nixos-config/hosts/computer-mo/system-settings/sys.set-updates.nix

13 lines
223 B
Nix
Raw Normal View History

2024-08-10 14:15:06 +02:00
{ ... }:
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "github:Moe1369/nixos-config";
flags = [
"--update-input" "nixpkgs" "--commit-lock-file"
];
allowReboot = true;
};
}