15 lines
277 B
Nix
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;
|
|
|
|
}
|