nix/modules/system/hardware/garbage-collection.nix

12 lines
160 B
Nix

{ ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 1w";
};
nix.settings.auto-optimise-store = true;
}