nix/module/common/AutoUpdate.nix

11 lines
203 B
Nix

{ const, ... }: {
system.autoUpgrade = {
enable = true;
allowReboot = false;
dates = "hourly";
flake = "git+${const.url}";
operation = "switch";
persistent = true;
};
}