From ccbb49c3899b6dbbabd5f490b55b710836610f97 Mon Sep 17 00:00:00 2001 From: NyxErinys Date: Mon, 18 May 2026 01:27:37 -0500 Subject: [PATCH] fix commented out thing --- modules/k3s/manifests.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/k3s/manifests.nix b/modules/k3s/manifests.nix index bfec6b8..f18c7cd 100644 --- a/modules/k3s/manifests.nix +++ b/modules/k3s/manifests.nix @@ -1,7 +1,7 @@ { cfg, lib, inputs, ... }: let manifests = [ - # ./deployments + ./deployments # ./services ]; imported = map ( n: import n { inherit cfg lib inputs; } ) manifests;