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

11 lines
144 B
Nix

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