nix-config/hosts/common/autoupdate.nix

11 lines
238 B
Nix
Raw Normal View History

2024-07-06 23:09:27 +02:00
{ pkgs, ... }:
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "https://git.huwe.mooo.com/willifan/nix-config.git";
persistent = true;
randomizedDelaySec = "5min";
fixedRandomDelay = true;
};
}