1
0
Fork 0
mirror of https://github.com/zigzap/zap.git synced 2025-10-20 15:14:08 +00:00

added shell.nix for my convenience

This commit is contained in:
Rene Schallner 2023-01-12 18:08:01 +01:00
parent f288d2418e
commit e50072ebe3

13
shell.nix Normal file
View file

@ -0,0 +1,13 @@
{
pkgs ? import <nixpkgs> {
overlays = [
(import (builtins.fetchTarball {
# url = https://github.com/nix-community/neovim-nightly-overlay/archive/master.tar.gz;
url = https://github.com/nix-community/neovim-nightly-overlay/archive/72ff8b1ca0331a8735c1eeaefb95c12dfe21d30a.tar.gz;
}))
];
}
} :
pkgs.mkShell {
nativeBuildInputs = [ pkgs.neovim-nightly pkgs.bat ];
}