nix-config/modules/default/common/garbage-collect.nix
2024-12-27 15:08:02 +01:00

9 lines
138 B
Nix

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