nix/module/common/AutoUpdate.nix

11 lines
194 B
Nix

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