diff --git a/nixos/tests/php-pcre.nix b/nixos/tests/php-pcre.nix
index 19bde9babad5..ae44aec7944f 100644
--- a/nixos/tests/php-pcre.nix
+++ b/nixos/tests/php-pcre.nix
@@ -8,30 +8,25 @@ import ./make-test.nix ({ ...}: {
services.httpd = {
enable = true;
adminAddr = "please@dont.contact";
- extraSubservices = lib.singleton {
- function = f: {
- enablePHP = true;
- phpOptions = "pcre.jit = true";
+ enablePHP = true;
+ phpOptions = "pcre.jit = true";
+ extraConfig =
+ let
+ testRoot = pkgs.writeText "index.php"
+ ''
+
+ '';
+ in
+ ''
+ Alias / ${testRoot}/
- extraConfig =
- let
- testRoot = pkgs.writeText "index.php"
- ''
-
- '';
- in
- ''
- Alias / ${testRoot}/
-
-
- Require all granted
-
- '';
- };
- };
+
+ Require all granted
+
+ '';
};
};
testScript = { ... }: