lol

Apply suggestion

Co-authored-by: Aaron Andersen <aaron@fosslib.net>

authored by

Bruno Inec
Aaron Andersen
and committed by
GitHub
dbbb062d edb6b109

+7 -10
+7 -10
nixos/modules/services/mail/goeland.nix
··· 61 61 }; 62 62 users.groups.goeland = { }; 63 63 64 - warnings = 65 - if hasAttr "password" cfg.settings.email 66 - then [ 67 - '' 68 - It is not recommended to set the "services.goeland.settings.email.password" 69 - option as it will be in cleartext in the Nix store. 70 - Please use "services.goeland.settings.email.password_file" instead. 71 - '' 72 - ] 73 - else [ ]; 64 + warnings = optionals (hasAttr "password" cfg.settings.email) [ 65 + '' 66 + It is not recommended to set the "services.goeland.settings.email.password" 67 + option as it will be in cleartext in the Nix store. 68 + Please use "services.goeland.settings.email.password_file" instead. 69 + '' 70 + ]; 74 71 }; 75 72 76 73 meta.maintainers = with maintainers; [ sweenu ];