11 lines
251 B
Nix
11 lines
251 B
Nix
{ pkgs, inputs, lib, config, ... }: {
|
|
system.autoUpgrade = {
|
|
enable = true;
|
|
allowReboot = false;
|
|
dates = "03:00";
|
|
flake = "git+https://git.voronind.com/voronind/nixos.git";
|
|
operation = "boot";
|
|
persistent = true;
|
|
};
|
|
}
|