The modules themselves don't work yet, but the flake does ! Yay ! (that was way too complicated wtf)
12 lines
176 B
Nix
12 lines
176 B
Nix
{ pkgs }:
|
|
|
|
pkgs.php83.buildEnv {
|
|
extensions = { enabled, all, }: enabled ++ (with all; [
|
|
redis
|
|
# xdebug
|
|
]);
|
|
|
|
# extraConfig = ''
|
|
# xdebug.mode=debug
|
|
# '';
|
|
}
|