From cb54a4d0ef6d6dc57d7062e54c7c5bfde9903333 Mon Sep 17 00:00:00 2001 From: Ingolf Wagner Date: Tue, 10 Jan 2023 19:34:05 +0100 Subject: [PATCH] fix nextcloud warnings --- nixos/machines/robi/nextcloud.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/nixos/machines/robi/nextcloud.nix b/nixos/machines/robi/nextcloud.nix index 433ba99..a9f0803 100644 --- a/nixos/machines/robi/nextcloud.nix +++ b/nixos/machines/robi/nextcloud.nix @@ -242,7 +242,12 @@ in }; # in php - services.phpfpm.phpPackage = pkgs.php73; + services.phpfpm = { + phpPackage = pkgs.php73; + phpOptions = '' + opcache.revalidate_freq = 10 + ''; + }; # nextcloud setup services.nextcloud = {