nextcloud: Apply recommended PHP setting

pull/86/head
Tristan Daniël Maat 2023-07-28 12:06:48 +02:00
parent 6b1e5dee56
commit 88d96f198b
Signed by: tlater
GPG Key ID: 49670FD774E43268
1 changed files with 7 additions and 0 deletions

View File

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