nixos-config/system/updates.nix

13 lines
208 B
Nix
Raw Normal View History

2024-08-04 19:06:02 +02:00
{ ... }:
2024-07-30 22:56:44 +02:00
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "../flake.nix";
flags = [
2024-08-03 17:34:34 +02:00
"--update-input" "nixpkgs" "--commit-lock-file"
2024-07-30 22:56:44 +02:00
];
allowReboot = true;
};
}