nixos-config/system/set-updates.nix

13 lines
240 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 = [
"--update-input" "nixpkgs" "nixpkgs-stable" "--commit-lock-file"
2024-07-30 22:56:44 +02:00
];
allowReboot = true;
};
}