nixos-framework-laptop-config/nixos/nix-maintenance.nix
2024-12-28 19:33:49 -05:00

14 lines
243 B
Nix

{
nix = {
settings.auto-optimise-store = true;
optimise = {
automatic = true;
dates = ["weekly"];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
};
}