about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorPatka <patka@patka.dev>2024-03-18 16:01:57 +0100
committerPatka <patka@patka.dev>2024-03-18 17:08:01 +0100
commit93aba53a08418eba4ce60dfd907326fdf9c28c87 (patch)
treea6acff0b2b5b6652400e719dda6c1391dbe54bdb /nixos/modules
parent1e642b176b3cf4b4e0a45241bfc462fdcbf9935b (diff)
downloadnixlib-93aba53a08418eba4ce60dfd907326fdf9c28c87.tar
nixlib-93aba53a08418eba4ce60dfd907326fdf9c28c87.tar.gz
nixlib-93aba53a08418eba4ce60dfd907326fdf9c28c87.tar.bz2
nixlib-93aba53a08418eba4ce60dfd907326fdf9c28c87.tar.lz
nixlib-93aba53a08418eba4ce60dfd907326fdf9c28c87.tar.xz
nixlib-93aba53a08418eba4ce60dfd907326fdf9c28c87.tar.zst
nixlib-93aba53a08418eba4ce60dfd907326fdf9c28c87.zip
engelsystem: cleanup
The custom php with extensions is not needed. The default already has all the needed extensions enabled by default.
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/web-apps/engelsystem.nix3
1 files changed, 0 insertions, 3 deletions
diff --git a/nixos/modules/services/web-apps/engelsystem.nix b/nixos/modules/services/web-apps/engelsystem.nix
index 7fb912415643..ae7b2b9e7d0c 100644
--- a/nixos/modules/services/web-apps/engelsystem.nix
+++ b/nixos/modules/services/web-apps/engelsystem.nix
@@ -3,8 +3,6 @@
 let
   inherit (lib) mkDefault mkEnableOption mkIf mkOption types mkPackageOption;
   cfg = config.services.engelsystem;
-  phpExt = pkgs.php.withExtensions
-    ({ enabled, all }: with all; [ filter mysqlnd mysqli pdo pdo_mysql mbstring ] ++ enabled);
 in {
   options = {
     services.engelsystem = {
@@ -101,7 +99,6 @@ in {
       '';
 
     services.phpfpm.pools.engelsystem = {
-      phpPackage = phpExt;
       user = "engelsystem";
       settings = {
         "listen.owner" = config.services.nginx.user;