Files
nicksOs/modules/system/garbage-collection.nix
T
2026-07-25 23:26:39 +02:00

17 lines
196 B
Nix

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