nix/clean.nix
2025-03-23 09:39:46 +01:00

15 lines
277 B
Nix

{ lib, pkgs, ... }:
{
#weekly update
system.autoUpgrade.enable = true;
system.autoUpgrade.dates = "weekly";
#auto cleanuo
nix.gc.automatic = true;
nix.gc.dates = "daily";
nix.gc.options = "--delete-older-than 10d";
nix.settings.auto-optimise-store = true;
}