nixos-config/modules/system/upgrades/default.nix
2024-08-13 19:56:30 +02:00

13 lines
223 B
Nix

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