1
0
Files
dotfiles/pkgs/fish/functions/nix-shell.fish.bckup
2025-11-21 17:11:38 +01:00

13 lines
212 B
Plaintext

function nix-shell
if not command -q nix-shell
command nix-shell;
return $status;
end
set -l _argv $argv
argparse -i 'p/packages=' -- $argv
or command nix-shell -- $_argv
set -x FISH_NIX_PACKAGES
end