nixos-config/system/set-updates.nix

13 lines
223 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 = "github:Moe1369/nixos-config";
2024-07-30 22:56:44 +02:00
flags = [
2024-08-06 20:46:22 +02:00
"--update-input" "nixpkgs" "--commit-lock-file"
2024-07-30 22:56:44 +02:00
];
allowReboot = true;
};
}