nixos/nextcloud: avoid loading imagick extension more than once

This avoids the following error message:
  Module 'imagick' already loaded at Unknown#0
This commit is contained in:
Benjamin Koch 2020-02-23 00:09:35 +00:00 committed by root
parent 2fea715779
commit db32158bbd

View file

@ -443,7 +443,7 @@ in {
pools.nextcloud = {
user = "nextcloud";
group = "nginx";
phpOptions = phpOptionsExtensions + phpOptionsStr;
phpOptions = phpOptionsStr;
phpPackage = phpPackage;
phpEnv = {
NEXTCLOUD_CONFIG_DIR = "${cfg.home}/config";