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

10 lines
125 B
Nix

{
self,
pkgs,
}:
pkgs.writeShellScriptBin "nsp" ''
#!/run/current-system/sw/bin/bash
nix-shell -p "$@" --run zsh
''