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

main
Maximilian Bosch 2 years ago
parent ecd8d42397
commit 6f80d6836a
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
  1. 2
      nixos/modules/services/web-apps/nextcloud.nix

@ -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;
};

Loading…
Cancel
Save