From b99f353ab82c6d6f1e50a91d74c17f46aea43948 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 10 Nov 2025 02:51:46 +0100 Subject: [PATCH] postfix: unquote tls_config_file value This can now be a path type due to changes applied to nixos unstable. --- mail-server/postfix.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mail-server/postfix.nix b/mail-server/postfix.nix index 84de67e..8a8e336 100644 --- a/mail-server/postfix.nix +++ b/mail-server/postfix.nix @@ -392,7 +392,7 @@ in let mkGroupString = groups: concatStringsSep " / " (map (concatStringsSep ":") groups); in - "${iniFormat.generate "postfix-openssl.cnf" { + iniFormat.generate "postfix-openssl.cnf" { globalSection.postfix = "postfix_settings"; sections = { postfix_settings.ssl_conf = "postfix_ssl_settings"; @@ -406,7 +406,7 @@ in ] ]; }; - }}"; + }; tls_config_name = "postfix"; # Algorithm selection happens through `tls_config_file` instead.