13 lines
176 B
Nix
13 lines
176 B
Nix
|
{ pkgs }:
|
||
|
|
||
|
pkgs.php83.buildEnv {
|
||
|
extensions = { enabled, all, }: enabled ++ (with all; [
|
||
|
redis
|
||
|
# xdebug
|
||
|
]);
|
||
|
|
||
|
# extraConfig = ''
|
||
|
# xdebug.mode=debug
|
||
|
# '';
|
||
|
}
|