nixos-framework-laptop-config/nixos/nix-maintenance.nix

15 lines
243 B
Nix
Raw Permalink Normal View History

2024-12-28 19:33:49 -05:00
{
nix = {
settings.auto-optimise-store = true;
optimise = {
automatic = true;
dates = ["weekly"];
};
gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 14d";
};
};
}