Files
nixos-config/glasshouse-laptop/home/scripts/nsp.nix

10 lines
133 B
Nix

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