nix/module/common/AutoUpdate.nix
2024-03-04 03:04:57 +03:00

11 lines
230 B
Nix

{ pkgs, inputs, lib, config, ... }: {
system.autoUpgrade = {
enable = true;
allowReboot = false;
dates = "daily";
flake = "/root/.config/linux/system";
operation = "boot";
persistent = true;
};
}