nixos-config/nixos/profiles/system/nix/gc.nix
2024-11-28 01:14:34 +08:00

13 lines
190 B
Nix

{ ... }:
{
nix = {
gc = {
automatic = true;
options = "--delete-older-than 14d";
dates = "weekly";
};
settings.min-free = 1024 * 1024 * 1024; # bytes
};
}