nixos/modules/base/gc.nix

12 lines
206 B
Nix
Raw Permalink 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;
}