Commit 5f63e1e6 authored by provokateurin's avatar provokateurin Committed by github-actions[bot]
Browse files

nixos/nextcloud: Fix services.nextcloud.settings.mail_smtpstreamoptions option type

parent e0e385b4
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.
            '';