nixos/setup-shell.nix

14 lines
298 B
Nix
Raw Permalink Normal View History

2024-02-02 13:45:05 +01:00
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
name = "nixosbuildshell";
nativeBuildInputs = with pkgs; [ nixFlakes ];
shellHook = ''
2024-02-02 13:45:05 +01:00
PATH=${pkgs.writeShellScriptBin "nix" ''
${pkgs.nixFlakes}/bin/nix --experimental-features "nix-command flakes" "$@"
''}/bin:$PATH
'';
}