From 88d96f198b60543c9fa00a55ee75973481497fb7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tristan=20Dani=C3=ABl=20Maat?= Date: Fri, 28 Jul 2023 12:06:48 +0200 Subject: [PATCH] nextcloud: Apply recommended PHP setting --- configuration/services/nextcloud.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configuration/services/nextcloud.nix b/configuration/services/nextcloud.nix index 4d81454..207679a 100644 --- a/configuration/services/nextcloud.nix +++ b/configuration/services/nextcloud.nix @@ -1,6 +1,7 @@ { pkgs, config, + options, ... }: let nextcloud = pkgs.nextcloud26; @@ -27,6 +28,12 @@ in { defaultPhoneRegion = "AT"; }; + phpOptions = + options.services.nextcloud.phpOptions.default + // { + "opcache.interned_strings_buffer" = "16"; + }; + extraApps = { inherit (pkgs.local) bookmarks calendar contacts cookbook news notes; };