[Backport release-25.11] nixos/nextcloud: Fix services.nextcloud.settings.mail_smtpstreamoptions option type (#466415)

This commit is contained in:
Maximilian Bosch 2025-11-30 16:42:21 +00:00 committed by GitHub
commit 05e38dcb0a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1100,8 +1100,8 @@ in
'';
};
mail_smtpstreamoptions = lib.mkOption {
type = lib.types.listOf lib.types.str;
default = [ ];
type = lib.types.attrsOf (lib.types.attrsOf lib.types.anything);
default = { };
description = ''
This depends on `mail_smtpmode`. Array of additional streams options that will be passed to underlying Swift mailer implementation.
'';