nixos/modules/base/gc.nix
2026-01-20 23:55:02 +01:00

12 lines
239 B
Nix

_: {
boot.loader.systemd-boot.configurationLimit = 10;
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 7d";
};
nix.settings.auto-optimise-store = true;
nix.optimise.automatic = true;
}