nixos/modules/base/gc.nix

13 lines
239 B
Nix
Raw Normal View History

2025-02-23 23:04:41 +01:00
_: {
boot.loader.systemd-boot.configurationLimit = 10;
nix.gc = {
automatic = true;
dates = "weekly";
2025-03-17 10:05:01 +01:00
options = "--delete-older-than 7d";
2025-02-23 23:04:41 +01:00
};
nix.settings.auto-optimise-store = true;
2026-01-20 23:55:02 +01:00
nix.optimise.automatic = true;
2025-02-23 23:04:41 +01:00
}