nixos-config/nixos/profiles/system/nix/gc.nix

13 lines
190 B
Nix
Raw Normal View History

2024-11-28 01:14:34 +08:00
{ ... }:
{
nix = {
gc = {
automatic = true;
options = "--delete-older-than 14d";
dates = "weekly";
};
settings.min-free = 1024 * 1024 * 1024; # bytes
};
}