nixos-config/system/updates.nix
2024-08-04 19:06:02 +02:00

13 lines
208 B
Nix

{ ... }:
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "../flake.nix";
flags = [
"--update-input" "nixpkgs" "--commit-lock-file"
];
allowReboot = true;
};
}