diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..60e4c9b --- /dev/null +++ b/shell.nix @@ -0,0 +1,13 @@ +{ + pkgs ? import { + 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 ]; +}