Merge pull request #28123 from jerith666/post-fix-up

Post fix up

authored by Peter Simons and committed by GitHub 1b30d153 7c9cadfb

+2 -2
+2 -2
nixos/modules/services/mail/postfix.nix
··· 213 213 wakeupDefined = options.wakeup.isDefined; 214 214 wakeupUCDefined = options.wakeupUnusedComponent.isDefined; 215 215 finalValue = toString config.wakeup 216 - + optionalString (!config.wakeupUnusedComponent) "?"; 217 - in if wakeupDefined && wakeupUCDefined then finalValue else "-"; 216 + + optionalString (wakeupUCDefined && !config.wakeupUnusedComponent) "?"; 217 + in if wakeupDefined then finalValue else "-"; 218 218 219 219 in [ 220 220 config.name