From 3447b28af135d11b4166ea8f088f2a137610765a Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sat, 2 May 2026 09:45:48 -0500 Subject: [PATCH] syntax fix --- modules/features/mtls.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/features/mtls.nix b/modules/features/mtls.nix index f1a09ef..7b8d88b 100644 --- a/modules/features/mtls.nix +++ b/modules/features/mtls.nix @@ -422,6 +422,9 @@ in ''} ''; }; + extraPackages = [ + config.pkgs.step-cli + ]; systemd = { description = "Automatic mTLS renewal service"; documentation = [ @@ -431,6 +434,7 @@ in after = [ "network-online.target" ]; wants = [ "network-online.target" ]; serviceConfig.Type = lib.mkDefault "oneshot"; + # serviceConfig.ExecCondition = ""; }; }; });