From db32158bbddc218426bd4e0698af82a033ab3852 Mon Sep 17 00:00:00 2001 From: Benjamin Koch Date: Sun, 23 Feb 2020 00:09:35 +0000 Subject: [PATCH] nixos/nextcloud: avoid loading imagick extension more than once This avoids the following error message: Module 'imagick' already loaded at Unknown#0 --- nixos/modules/services/web-apps/nextcloud.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix index d79f2bb735f..2622db63050 100644 --- a/nixos/modules/services/web-apps/nextcloud.nix +++ b/nixos/modules/services/web-apps/nextcloud.nix @@ -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";