nixos-config/modules/system/settings/nix/gc/default.nix

9 lines
115 B
Nix
Raw Permalink Normal View History

2024-12-09 23:07:20 -05:00
{ ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
2025-01-07 13:35:36 -05:00
options = "--delete-older-than 7d";
2024-12-09 23:07:20 -05:00
};
}