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

10 lines
138 B
Nix
Raw Permalink Normal View History

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