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
boot = { boot = {
loader = { loader = {
@@ -207,8 +215,10 @@
}; };
# User programs # User programs
programs.steam.enable = true; programs.steam = {
programs.steam.package = pkgs.unstable.steam; enable = true;
package = pkgs.unstable.steam;
};
programs.walker.enable = true; programs.walker.enable = true;
programs.dconf.enable = true; programs.dconf.enable = true;
programs.xfconf.enable = true; programs.xfconf.enable = true;