feat(devShells): move to separate directory

This commit is contained in:
reo101 2023-02-17 02:43:18 +02:00
parent e061bf4db9
commit 10b3f3da0f
Signed by: reo101
GPG key ID: 675AA7EF13964ACB
3 changed files with 8 additions and 4 deletions

View file

@ -0,0 +1,15 @@
# Shell for bootstrapping flake-enabled nix and other tooling
{ pkgs
, ...
}: {
default = pkgs.mkShell {
NIX_CONFIG = ''
extra-experimental-features = nix-command flakes repl-flake
'';
nativeBuildInputs = with pkgs; [
nix
home-manager
git
];
};
}