about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorAaron Andersen <aaron@fosslib.net>2020-02-26 17:17:55 -0500
committerGitHub <noreply@github.com>2020-02-26 17:17:55 -0500
commit4d67db310101bbf471b91bf3e4f167414360c128 (patch)
treea77b9f3a2dd0e06dbfd1206d91158a39c6306d3c /nixos
parent0538dec989ed6556bdce0e8fe59e4f2ef184915f (diff)
parentdb32158bbddc218426bd4e0698af82a033ab3852 (diff)
downloadnixlib-4d67db310101bbf471b91bf3e4f167414360c128.tar
nixlib-4d67db310101bbf471b91bf3e4f167414360c128.tar.gz
nixlib-4d67db310101bbf471b91bf3e4f167414360c128.tar.bz2
nixlib-4d67db310101bbf471b91bf3e4f167414360c128.tar.lz
nixlib-4d67db310101bbf471b91bf3e4f167414360c128.tar.xz
nixlib-4d67db310101bbf471b91bf3e4f167414360c128.tar.zst
nixlib-4d67db310101bbf471b91bf3e4f167414360c128.zip
Merge pull request #80849 from BBBSnowball/pull-load-imagick-once
nixos/nextcloud: avoid loading imagick extension more than once
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/web-apps/nextcloud.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/web-apps/nextcloud.nix b/nixos/modules/services/web-apps/nextcloud.nix
index 53bd518d857e..912e05d6d400 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";