12 lines
148 B
Nix
Executable File
12 lines
148 B
Nix
Executable File
{
|
|
pkgs
|
|
}:
|
|
pkgs.writeShellApplication {
|
|
name = "nsp";
|
|
text = ''
|
|
#!/run/current-system/sw/bin/bash
|
|
|
|
nix-shell -p "$@" --run zsh
|
|
'';
|
|
}
|