From 0ccdd23cba6785a8daf1bee5f3a28872f3ca68e4 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Wed, 3 Dec 2025 10:03:29 +0100 Subject: [PATCH] fix(nixos): correct typo in Postfix configuration - Renamed `setting.main` to `settings.main` in the Postfix module for consistency with configuration standards. - Ensured proper functionality of service by aligning with expected key structure. --- systems/x86_64-linux/sgx/mail.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/systems/x86_64-linux/sgx/mail.nix b/systems/x86_64-linux/sgx/mail.nix index 0463ea6..289bac2 100644 --- a/systems/x86_64-linux/sgx/mail.nix +++ b/systems/x86_64-linux/sgx/mail.nix @@ -7,7 +7,7 @@ services.postfix = { enable = true; - setting.main = { + settings.main = { relayhost = [ "[smtp.gmail.com]:587" ]; smtp_use_tls = "yes"; smtp_sasl_auth_enable = "yes";