From 5cd1796531f13d4cf184bb30d2331478f2d19769 Mon Sep 17 00:00:00 2001 From: naturallaw77 Date: Sat, 16 Dec 2023 18:25:50 -0800 Subject: [PATCH] Updated PHP for Nextcloud 28 --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 4b3ee03..585438d 100644 --- a/configuration.nix +++ b/configuration.nix @@ -6,7 +6,7 @@ let custom-php = pkgs.php81.buildEnv { - extensions = { enabled, all }: enabled ++ (with all; [ apcu redis imagick memcached ]); + extensions = { enabled, all }: enabled ++ (with all; [ bz2 apcu redis imagick memcached ]); extraConfig = '' display_errors = On display_startup_errors = On @@ -57,6 +57,9 @@ in package = pkgs.nixUnstable; extraOptions = '' experimental-features = nix-command flakes + experimental-features = auto-allocate-uids + experimental-features = configurable-impure-env + ''; };