We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 395137a commit cd6932bCopy full SHA for cd6932b
nixos/modules/services/web-apps/grav.nix
@@ -102,24 +102,12 @@ in
102
phpPackage = cfg.phpPackage.buildEnv {
103
extensions =
104
{ all, enabled }:
105
- with all;
106
- [
+ enabled
+ ++ (with all; [
107
apcu
108
- ctype
109
- curl
110
- dom
111
- exif
112
- filter
113
- gd
114
- mbstring
115
- opcache
116
- openssl
117
- session
118
- simplexml
119
xml
120
yaml
121
- zip
122
- ];
+ ]);
123
124
extraConfig = generators.toKeyValue { mkKeyValue = generators.mkKeyValueDefault { } " = "; } {
125
output_buffering = "0";
0 commit comments