Unverified Commit 05e38dcb authored by Maximilian Bosch's avatar Maximilian Bosch Committed by GitHub
Browse files

[Backport release-25.11] nixos/nextcloud: Fix...

[Backport release-25.11] nixos/nextcloud: Fix services.nextcloud.settings.mail_smtpstreamoptions option type (#466415)
parents e9f85389 5f63e1e6
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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.
            '';