From 01296dcc57987a73e11dbf49c044fc6fe4ca0fea Mon Sep 17 00:00:00 2001 From: George Kaklamanos Date: Sun, 6 Jul 2025 13:59:41 +0300 Subject: [PATCH] fish: Edit function `ns` to accept multiple parameters Signed-off-by: George Kaklamanos --- home-manager/fish.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/home-manager/fish.nix b/home-manager/fish.nix index d93ed02..673820c 100644 --- a/home-manager/fish.nix +++ b/home-manager/fish.nix @@ -55,7 +55,7 @@ "cdt" = "cd (mktemp -d)"; }; functions = { - ns = "nix shell nixpkgs#$argv[1]"; + ns = "nix shell nixpkgs#$argv"; nss = "nix shell nixpkgs#$argv[1] -c $argv"; epoch = "date --date +\"@$argv[1]\""; which = "ls -l (which $argv[1])";