Add symfony package, expand php definition, add native zsh shell

This commit is contained in:
myrmidex 2026-06-02 15:27:47 +00:00
parent 78a4e22d37
commit dcaa09aa6f

View file

@ -3,8 +3,9 @@
pkgs.mkShell {
buildInputs = with pkgs; [
# PHP and tools
php84
(php84.withExtensions ({ enabled, all }: enabled ++ (with all; [ pdo_pgsql pgsql ])))
php84Packages.composer
symfony-cli
# Container tools
podman
@ -15,4 +16,9 @@ pkgs.mkShell {
curl
gnumake
];
shellHook = ''
export SHELL=${pkgs.zsh}/bin/zsh
exec ${pkgs.zsh}/bin/zsh
'';
}