about summary refs log tree commit diff
path: root/modules
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2023-11-05 14:35:59 +0100
committerAlyssa Ross <hi@alyssa.is>2023-11-05 14:38:13 +0100
commitb218a57266e958a3fb602638ac79377da65ad11f (patch)
treee416faf4b1e57cd308feccf1aaf8945ff7be2969 /modules
parent480416cc0d7e508b652c516af8d7342e3b1e59e3 (diff)
downloadnixlib-b218a57266e958a3fb602638ac79377da65ad11f.tar
nixlib-b218a57266e958a3fb602638ac79377da65ad11f.tar.gz
nixlib-b218a57266e958a3fb602638ac79377da65ad11f.tar.bz2
nixlib-b218a57266e958a3fb602638ac79377da65ad11f.tar.lz
nixlib-b218a57266e958a3fb602638ac79377da65ad11f.tar.xz
nixlib-b218a57266e958a3fb602638ac79377da65ad11f.tar.zst
nixlib-b218a57266e958a3fb602638ac79377da65ad11f.zip
modules/workstation/postfix: fix path typo
This prevented the unit from starting even when the file with the
intended name was present.
Diffstat (limited to 'modules')
-rw-r--r--modules/workstation/mail/postfix/default.nix4
1 files changed, 2 insertions, 2 deletions
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";
 }