This commit is contained in:
Oliver Davies 2025-06-22 22:42:31 +01:00
parent 16355d8cde
commit fbd7c1866f
4 changed files with 26 additions and 24 deletions

View file

@ -1,7 +1,9 @@
{ lib, pkgs }: { lib, pkgs }:
pkgs.mkShell { with pkgs;
packages = with pkgs; [
mkShell {
packages = [
bun bun
eslint_d eslint_d
nodejs nodejs
@ -11,6 +13,6 @@ pkgs.mkShell {
]; ];
shellHook = '' shellHook = ''
echo "nodejs $(${lib.getExe pkgs.nodejs} --version)" echo "nodejs $(${lib.getExe nodejs} --version)"
''; '';
} }

View file

@ -5,16 +5,15 @@
... ...
}: }:
pkgs.mkShell { with pkgs;
packages =
with pkgs; mkShell {
[ packages = [
php82 php82
php82Packages.composer php82Packages.composer
] ] ++ commonPhpPackages;
++ commonPhpPackages;
shellHook = '' shellHook = ''
${lib.getExe pkgs.php82} --version ${lib.getExe php82} --version
''; '';
} }

View file

@ -4,16 +4,15 @@
pkgs, pkgs,
}: }:
pkgs.mkShell { with pkgs;
packages =
with pkgs; mkShell {
[ packages = [
php83 php83
php83Packages.composer php83Packages.composer
] ] ++ commonPhpPackages;
++ commonPhpPackages;
shellHook = '' shellHook = ''
${lib.getExe pkgs.php83} --version ${lib.getExe php83} --version
''; '';
} }

View file

@ -1,13 +1,15 @@
{ lib, pkgs }: { lib, pkgs }:
pkgs.mkShell { with pkgs;
packages = with pkgs; [
mkShell {
packages = [
tailwindcss-language-server tailwindcss-language-server
tailwindcss_4 tailwindcss_4
watchman watchman
]; ];
shellHook = '' shellHook = ''
${lib.getExe pkgs.tailwindcss_4} --help ${lib.getExe tailwindcss_4} --help
''; '';
} }