From 802902bc39467fcd9c49c5194147b5adc4e6811a Mon Sep 17 00:00:00 2001 From: Roy Dumblauskas Date: Tue, 19 May 2026 22:31:52 -0500 Subject: [PATCH] enable k3s --- nixos/configuration.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 322eb6f..4d9ea34 100755 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -115,6 +115,19 @@ in }; }; + # ================================ # + # K3S SERVICE # + # ================================ # + + services.k3s = { + enable = true; + role = "server"; + }; + + # ================================ # + # END K3S SERVICE # + # ================================ # + # ================================ # # BLOG SERVICE # # ================================ # @@ -209,6 +222,7 @@ in 22 80 443 + 6443 # k3s ]; };