Add symfony package, expand php definition, add native zsh shell
This commit is contained in:
parent
78a4e22d37
commit
dcaa09aa6f
1 changed files with 7 additions and 1 deletions
|
|
@ -3,8 +3,9 @@
|
||||||
pkgs.mkShell {
|
pkgs.mkShell {
|
||||||
buildInputs = with pkgs; [
|
buildInputs = with pkgs; [
|
||||||
# PHP and tools
|
# PHP and tools
|
||||||
php84
|
(php84.withExtensions ({ enabled, all }: enabled ++ (with all; [ pdo_pgsql pgsql ])))
|
||||||
php84Packages.composer
|
php84Packages.composer
|
||||||
|
symfony-cli
|
||||||
|
|
||||||
# Container tools
|
# Container tools
|
||||||
podman
|
podman
|
||||||
|
|
@ -15,4 +16,9 @@ pkgs.mkShell {
|
||||||
curl
|
curl
|
||||||
gnumake
|
gnumake
|
||||||
];
|
];
|
||||||
|
|
||||||
|
shellHook = ''
|
||||||
|
export SHELL=${pkgs.zsh}/bin/zsh
|
||||||
|
exec ${pkgs.zsh}/bin/zsh
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue