From b218a57266e958a3fb602638ac79377da65ad11f Mon Sep 17 00:00:00 2001 From: Alyssa Ross Date: Sun, 5 Nov 2023 14:35:59 +0100 Subject: modules/workstation/postfix: fix path typo This prevented the unit from starting even when the file with the intended name was present. --- modules/workstation/mail/postfix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules/workstation/mail/postfix/default.nix') diff --git a/modules/workstation/mail/postfix/default.nix b/modules/workstation/mail/postfix/default.nix index 7e7f2e84bca5..db16bced3a5e 100644 --- a/modules/workstation/mail/postfix/default.nix +++ b/modules/workstation/mail/postfix/default.nix @@ -38,6 +38,6 @@ services.postfix.config.smtp_tls_security_level = "encrypt"; services.postfix.config.smtp_tls_wrappermode = true; - systemd.services.postfix-setup.unitConfig.ConditionPathExists = "/var/lib/postfix/sasl_paswd"; - systemd.services.postfix.unitConfig.ConditionPathExists = "/var/lib/postfix/sasl_paswd"; + systemd.services.postfix-setup.unitConfig.ConditionPathExists = "/var/lib/postfix/sasl_passwd"; + systemd.services.postfix.unitConfig.ConditionPathExists = "/var/lib/postfix/sasl_passwd"; } -- cgit 1.4.1