We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3094514 commit 72668c1Copy full SHA for 72668c1
nixos/modules/services/web-apps/nextcloud.nix
@@ -1324,6 +1324,14 @@ in
1324
Use `services.nextcloud.secrets.mail_smtppassword` instead and set it to a file containing the password.
1325
'';
1326
}
1327
+ {
1328
+ assertion =
1329
+ lib.versionAtLeast cfg.package.version "33.0.0"
1330
+ || cfg.config.objectstore.s3.use_presigned_url != null;
1331
+ message = ''
1332
+ Presigned URLs are only available on Nextcloud >= 33.0.0.
1333
+ '';
1334
+ }
1335
];
1336
1337
0 commit comments