Files
nixos-config/modules/gc.nix
T
2026-05-27 09:30:11 +02:00

11 lines
166 B
Nix

{ config, inputs, ... }:
{
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
nix.optimise.automatic = true;
}