removed nsp script and moved it to a shell function

This commit is contained in:
2024-11-24 14:45:16 -05:00
parent 0aace8edda
commit 501aedc119
2 changed files with 0 additions and 9 deletions

View File

@@ -36,7 +36,6 @@ in
fetchfromgh = super.callPackage ./scripts/nix/fetchfromgh.nix {}; fetchfromgh = super.callPackage ./scripts/nix/fetchfromgh.nix {};
garbage-collect = super.callPackage ./scripts/nix/garbage-collect.nix {}; garbage-collect = super.callPackage ./scripts/nix/garbage-collect.nix {};
check_updates = super.callPackage ./scripts/nix/check_updates.nix {}; check_updates = super.callPackage ./scripts/nix/check_updates.nix {};
nsp = super.callPackage ./scripts/nix/nsp.nix {};
rebuild = super.callPackage ./scripts/nix/rebuild.nix { inherit host; self = root; }; rebuild = super.callPackage ./scripts/nix/rebuild.nix { inherit host; self = root; };
chpaper = super.callPackage ./scripts/wm-controls/chpaper.nix {}; chpaper = super.callPackage ./scripts/wm-controls/chpaper.nix {};
chscheme = super.callPackage ./scripts/wm-controls/chscheme.nix {}; chscheme = super.callPackage ./scripts/wm-controls/chscheme.nix {};

View File

@@ -1,8 +0,0 @@
{ pkgs }:
pkgs.writeShellApplication {
name = "nsp";
text = ''
trap 'NIX_SHELL=false kitty_theme' exit
NIX_SHELL=true command nix-shell -p "$@" --run zsh
'';
}