nixos-config/system/updates.nix
2024-07-30 22:56:44 +02:00

13 lines
214 B
Nix

{ config, pkgs, pkgs-stable, ... }:
{
system.autoUpgrade = {
enable = true;
dates = "04:00";
flake = "../flake.nix";
flags = [
"--update-input" "nixpkgs"
];
allowReboot = true;
};
}