Files
nixos-config/modules/home/scripts/nix/nsp.nix

12 lines
148 B
Nix
Executable File

{
pkgs
}:
pkgs.writeShellApplication {
name = "nsp";
text = ''
#!/run/current-system/sw/bin/bash
nix-shell -p "$@" --run zsh
'';
}