nixos-config/hosts/gc.nix

9 lines
124 B
Nix
Raw Normal View History

2024-02-10 23:46:24 +01:00
{ config, ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 10d";
};
}