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

12 lines
160 B
Nix
Raw Normal View History

2024-03-09 17:18:36 +01:00
{ ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 1w";
};
nix.settings.auto-optimise-store = true;
}