add some programs and set up nix auto gc

This commit is contained in:
Schrottkatze 2024-07-28 20:53:38 +02:00
parent c64f321cc5
commit f22a20b08c
Signed by: schrottkatze
SSH key fingerprint: SHA256:hXb3t1vINBFCiDCmhRABHX5ocdbLiKyCdKI4HK2Rbbc

View file

@ -45,6 +45,8 @@ with builtins; {
htmlq
prusa-slicer
zed-editor
wget
git
neofetch
@ -158,4 +160,10 @@ with builtins; {
};
users.defaultUserShell = pkgs.nushell;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 60d";
};
}