add: shell.nix

This commit is contained in:
ooks-io 2023-08-21 13:08:04 +12:00
parent 4430232787
commit 16c960a1d6
5 changed files with 22 additions and 3 deletions

7
shell.nix Normal file
View file

@ -0,0 +1,7 @@
{ pkgs ? (import ./nixpkgs.nix) { } }: {
default = pkgs.mkShell {
# Enable experimental features without having to specify the argument
NIX_CONFIG = "experimental-features = nix-command flakes";
nativeBuildInputs = with pkgs; [ nix home-manager git neovim ];
};
}