System/nixos/modules/autoupdate.nix

13 lines
204 B
Nix

{
config,
lib,
pkgs,
...
}: {
system.autoUpgrade = {
enable = true;
flake = "git+https://git.stranger.systems/Nix/System.git";
dates = "02:00";
randomizedDelaySec = "2h";
};
}