nix-config/hosts/common/garbage-collect.nix

9 lines
143 B
Nix
Raw Normal View History

2024-07-06 23:21:02 +02:00
{ pkgs, ... }:
{
nix.gc = {
automatic = true;
dates = "04:30";
persistent = true;
options = "--delete-older-than 10d";
};
}