nixos/modules/base/gc.nix

12 lines
206 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";
options = "--delete-older-than 1w";
};
nix.settings.auto-optimise-store = true;
}