nixos-config/hosts/gc.nix

8 lines
121 B
Nix

{config, ...}: {
nix.gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 10d";
};
}