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.
This commit is contained in:
Harald Hoyer 2025-12-03 10:03:29 +01:00
parent 4386027761
commit 0ccdd23cba

View file

@ -7,7 +7,7 @@
services.postfix = { services.postfix = {
enable = true; enable = true;
setting.main = { settings.main = {
relayhost = [ "[smtp.gmail.com]:587" ]; relayhost = [ "[smtp.gmail.com]:587" ];
smtp_use_tls = "yes"; smtp_use_tls = "yes";
smtp_sasl_auth_enable = "yes"; smtp_sasl_auth_enable = "yes";