pterodactyl-nix/packages/php.nix
kalmenn 6fbd9b2a6c
feat: Scaffold the nixos modules
The modules themselves don't work yet, but the flake does ! Yay !
(that was way too complicated wtf)
2025-07-07 04:49:01 +02:00

12 lines
176 B
Nix

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