From 41b76dc85257a563fb2fd194bdd2086228c7ae63 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sat, 9 Aug 2025 10:46:12 -0700 Subject: [PATCH] base/base: enable autoUpgrade options --- base/base.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/base/base.nix b/base/base.nix index ee9cc0b..978cc22 100644 --- a/base/base.nix +++ b/base/base.nix @@ -122,6 +122,21 @@ in python3 # For Ansible ]; + system.autoUpgrade = { + enable = true; + persistent = true; + operation = switch; + + dates = "daily"; + fixedRandomDelay = true; + + allowReboot = true; + rebootWindow = { + lower = "9:00"; + upper = "10:00"; + }; + }; + # ========== Services ========== services.openssh = { enable = true;