nix-config/hosts/common/garbage-collect.nix
2024-09-20 23:18:44 +02:00

10 lines
138 B
Nix

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