nix/module/common/AutoUpdate.nix

11 lines
194 B
Nix
Raw Normal View History

2024-03-15 16:37:56 +03:00
{ const, ... }: {
system.autoUpgrade = {
enable = true;
allowReboot = false;
2024-03-09 20:40:24 +03:00
dates = "hourly";
2024-03-15 16:37:56 +03:00
flake = const.url;
2024-03-06 04:01:54 +03:00
operation = "switch";
persistent = true;
};
}