From 893bf5b6a1851441d72e8540e461a6ccb2aaaa72 Mon Sep 17 00:00:00 2001 From: Timothy DeHerrera Date: Sat, 1 Aug 2020 22:23:35 -0600 Subject: [PATCH] shell: proper shell escape --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 023489a3..4a84c678 100644 --- a/shell.nix +++ b/shell.nix @@ -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 '';