diff options
| -rw-r--r-- | hosts/vps/configuration.nix | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/hosts/vps/configuration.nix b/hosts/vps/configuration.nix index b0841d4..b60f695 100644 --- a/hosts/vps/configuration.nix +++ b/hosts/vps/configuration.nix @@ -36,7 +36,15 @@ htop ]; - system.autoUpgrade.enable = true; + system.autoUpgrade = { + enable = true; + allowReboot = true; + + rebootWindow = { + lower = "02:00"; + upper = "05:00"; + }; + }; services.openssh = { enable = true; |
