9 lines
122 B
Nix
9 lines
122 B
Nix
{ self, pkgs }:
|
|
|
|
|
|
pkgs.writeShellScriptBin "nsp" (''
|
|
#!/run/current-system/sw/bin/bash
|
|
|
|
nix-shell -p "$@" --run zsh
|
|
'')
|