This commit is contained in:
kalmenn 2025-07-07 13:52:45 +02:00
parent 6fbd9b2a6c
commit 816e55f41e
Signed by: kalmenn
GPG key ID: F500055C44BC3834
6 changed files with 290 additions and 76 deletions

View file

@ -1,12 +1,12 @@
{ pkgs }:
{ pkgs ? import <nixpkgs> }:
pkgs.php83.buildEnv {
extensions = { enabled, all, }: enabled ++ (with all; [
redis
# xdebug
xdebug
]);
# extraConfig = ''
# xdebug.mode=debug
# '';
extraConfig = ''
xdebug.mode=debug
'';
}