From 2f0b733fd91e163cdb72e0ca84d77e07c28c8733 Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 9 Feb 2026 21:10:58 -0800 Subject: [PATCH] [NixOS] Disable k3s and enable autoUpgrade on jimi-hendnix --- nixos/machines/jimi-hendnix.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/nixos/machines/jimi-hendnix.nix b/nixos/machines/jimi-hendnix.nix index ed6582fe..d4d5a9f9 100644 --- a/nixos/machines/jimi-hendnix.nix +++ b/nixos/machines/jimi-hendnix.nix @@ -6,8 +6,7 @@ ]; myModules.railbird-k3s = { - enable = true; - serverAddr = "https://ryzen-shine.local:6443"; + enable = false; }; myModules.base.enable = true; myModules.desktop.enable = true; @@ -72,6 +71,11 @@ }; }; + system.autoUpgrade = { + enable = true; + dates = "hourly"; + }; + security.acme = { acceptTerms = true; defaults.email = "IvanMalison@gmail.com";