mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-22 05:14:42 +01:00
add some programs and set up nix auto gc
This commit is contained in:
parent
c64f321cc5
commit
f22a20b08c
|
@ -45,6 +45,8 @@ with builtins; {
|
||||||
|
|
||||||
htmlq
|
htmlq
|
||||||
|
|
||||||
|
prusa-slicer
|
||||||
|
zed-editor
|
||||||
wget
|
wget
|
||||||
git
|
git
|
||||||
neofetch
|
neofetch
|
||||||
|
@ -158,4 +160,10 @@ with builtins; {
|
||||||
};
|
};
|
||||||
|
|
||||||
users.defaultUserShell = pkgs.nushell;
|
users.defaultUserShell = pkgs.nushell;
|
||||||
|
|
||||||
|
nix.gc = {
|
||||||
|
automatic = true;
|
||||||
|
dates = "weekly";
|
||||||
|
options = "--delete-older-than 60d";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue