lol

add warning if not using password_file

+11
+11
nixos/modules/services/mail/goeland.nix
··· 60 60 isSystemUser = true; 61 61 }; 62 62 users.groups.goeland = { }; 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 [ ]; 63 74 }; 64 75 65 76 meta.maintainers = with maintainers; [ sweenu ];