Files
nixos-config/glasshouse-laptop/home/scripts/nsp.nix
2024-10-12 17:17:10 -04:00

10 lines
127 B
Nix

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