nix-config/hosts/common/garbage-collect.nix
2024-12-07 23:16:28 +01:00

9 lines
138 B
Nix

{ ... }:
{
nix.gc = {
automatic = true;
dates = "04:30";
persistent = true;
options = "--delete-older-than 30d";
};
}