shell: don't overwrite nix by default
For users who already have nix-command setup, we don't want to override the `nix` in their path.
This commit is contained in:
parent
70723403cc
commit
3a626b6cf2
@ -18,16 +18,17 @@ pkgs.mkShell {
|
|||||||
nativeBuildInputs = with pkgs; [
|
nativeBuildInputs = with pkgs; [
|
||||||
git
|
git
|
||||||
git-crypt
|
git-crypt
|
||||||
nixFlakes
|
|
||||||
rebuild
|
rebuild
|
||||||
];
|
];
|
||||||
|
|
||||||
shellHook = ''
|
shellHook = ''
|
||||||
mkdir -p secrets
|
mkdir -p secrets
|
||||||
|
if ! nix flake show; then
|
||||||
PATH=${
|
PATH=${
|
||||||
pkgs.writeShellScriptBin "nix" ''
|
pkgs.writeShellScriptBin "nix" ''
|
||||||
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
|
${pkgs.nixFlakes}/bin/nix --option experimental-features "nix-command flakes ca-references" "$@"
|
||||||
''
|
''
|
||||||
}/bin:$PATH
|
}/bin:$PATH
|
||||||
|
fi
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user