NixOS-Config/modules/system/settings/nix/gc/default.nix

9 lines
115 B
Nix
Raw Normal View History

2024-12-09 23:07:20 -05:00
{ ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 1w";
};
}