nixos-config/hosts/gc.nix
2024-02-10 23:46:24 +01:00

9 lines
124 B
Nix

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