changed nix garbage behaviour

This commit is contained in:
2026-02-14 14:20:07 +00:00
parent 0d687f9d4c
commit 3867276cfc

View File

@@ -32,6 +32,14 @@
};
};
# Nix store shit
nix.optimise.automatic = true;
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 5d";
};
# Boot
boot = {
loader = {
@@ -207,8 +215,10 @@
};
# User programs
programs.steam.enable = true;
programs.steam.package = pkgs.unstable.steam;
programs.steam = {
enable = true;
package = pkgs.unstable.steam;
};
programs.walker.enable = true;
programs.dconf.enable = true;
programs.xfconf.enable = true;