nix/module/common/AutoUpdate.nix

11 lines
226 B
Nix
Raw Normal View History

2024-03-06 04:01:54 +03:00
{ ... }: {
system.autoUpgrade = {
enable = true;
allowReboot = false;
2024-03-04 04:23:37 +03:00
dates = "03:00";
2024-03-04 03:14:18 +03:00
flake = "git+https://git.voronind.com/voronind/nixos.git";
2024-03-06 04:01:54 +03:00
operation = "switch";
persistent = true;
};
}