nix/module/common/AutoUpdate.nix

11 lines
251 B
Nix
Raw Normal View History

{ pkgs, inputs, lib, config, ... }: {
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";
operation = "boot";
persistent = true;
};
}