nixos/nextcloud: mariadb workaround is for versions >=24 not needed anymore

This commit is contained in:
Maximilian Bosch 2022-05-18 11:22:31 +02:00
parent ecd8d42397
commit 6f80d6836a
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -872,7 +872,7 @@ in {
# FIXME(@Ma27) Nextcloud isn't compatible with mariadb 10.6,
# this is a workaround.
# See https://help.nextcloud.com/t/update-to-next-cloud-21-0-2-has-get-an-error/117028/22
settings = {
settings = mkIf (versionOlder cfg.package.version "24") {
mysqld = {
innodb_read_only_compressed = 0;
};