Enable auto-update on srv01-hf

This commit is contained in:
JuliusFreudenberger 2025-08-19 17:00:45 +02:00
parent 6989f4be08
commit 962ee20628
2 changed files with 16 additions and 0 deletions

15
modules/auto-upgrade.nix Normal file
View file

@ -0,0 +1,15 @@
{
inputs,
...
}: {
system.autoUpgrade = {
enable = true;
flags = [
"--recreate-lock-file" # Deprecated, but will hopefully be reintroduced
"-L"
];
flake = inputs.self.outPath;
dates = "02:00";
randomizedDelaySec = "45min";
};
}