nix run alias and removed packages better used through that

This commit is contained in:
twoneis 2025-03-08 13:54:36 +01:00
parent aacd8a5fad
commit dd93d696b9

View file

@ -17,10 +17,6 @@ in {
man-pages-posix man-pages-posix
tree tree
file file
zip
unzip
gnutar
lshw
]; ];
home.file = { home.file = {
@ -94,6 +90,11 @@ in {
interactiveShellInit = concatMapStrings (x: "set --universal " + x + "\n") [ interactiveShellInit = concatMapStrings (x: "set --universal " + x + "\n") [
"pure_enable_nixdevshell true" "pure_enable_nixdevshell true"
]; ];
functions = {
run = "nix run nixpkgs#$argv[1] -- $argv[2..]";
};
shellAbbrs = { shellAbbrs = {
ga = "git add"; ga = "git add";
gc = "git commit"; gc = "git commit";