Files
nixos-config/modules/gc.nix
T
2026-05-03 11:43:37 +02:00

24 lines
437 B
Nix

{ config, inputs, ... }:
{
system.autoUpgrade = {
enable = true;
flake = inputs.self.outPath;
flags = [
"--update-input" "nixpkgs"
"--no-write-lock-file"
"--print-build-logs"
];
dates = "02:00";
randomizedDelaySec = "45min";
persistent = true;
};
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
nix.optimise.automatic = true;
}