Compare commits

...

2 commits

Author SHA1 Message Date
Fabian Montero 4ab78111a0
update aliases 2024-09-04 00:22:20 -06:00
Fabian Montero f4d9e17b60
remove unnecesary packages 2024-09-04 00:22:04 -06:00
2 changed files with 3 additions and 3 deletions

View file

@ -96,6 +96,7 @@
local pkg
pkg="$1"
shift
echo "nix shell nixpkgs#$pkg"
nix shell "nixpkgs#$pkg" "$@"
}
@ -103,7 +104,8 @@
local pkg
pkg="$1"
shift
nix shell "unstable#$pkg" "$@"
echo "nix shell unstable#$pkg --impure"
nix shell "unstable#$pkg" "$@" --impure
}
function spawn () {

View file

@ -1,4 +1,2 @@
pkgs: {
#andesight = pkgs.callPackage ./andesight {};
#netextender = pkgs.callPackage ./netextender {};
}