From 19db20ee97da07400c28166dbe17010009695d36 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Fri, 27 Mar 2026 21:25:32 -0500 Subject: [PATCH] mtlsbundle fix --- modules/features/mtls.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/features/mtls.nix b/modules/features/mtls.nix index 29023f5..01cefaf 100644 --- a/modules/features/mtls.nix +++ b/modules/features/mtls.nix @@ -270,7 +270,7 @@ in inherit (cfg) subject provisioner san lifetime; inherit pkgs tlsCert tlsKey mtlsBundle; }) - (mkMtlsCheckScript { inherit pkgs; inherit (cfg) mtlsBundle; }) + (mkMtlsCheckScript { inherit pkgs mtlsBundle; }) (mkMtlsRenewScript { inherit pkgs tlsCert tlsKey mtlsBundle; }) ]; @@ -309,7 +309,7 @@ in inherit (cfg) subject provisioner san lifetime; inherit pkgs tlsCert tlsKey mtlsBundle; }) - (mkMtlsCheckScript { inherit pkgs; inherit (cfg) mtlsBundle; }) + (mkMtlsCheckScript { inherit pkgs mtlsBundle; }) (mkMtlsRenewScript { inherit pkgs tlsCert tlsKey mtlsBundle; }) ];