shell: proper shell escape

This commit is contained in:
Timothy DeHerrera 2020-08-01 22:23:35 -06:00
parent 93c2a3506b
commit 893bf5b6a1
No known key found for this signature in database
GPG key ID: 8985725DB5B0C122

View file

@ -14,7 +14,7 @@ pkgs.mkShell {
mkdir -p secrets
PATH=${
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
'';