Add php/phpNode

This commit is contained in:
Malte Tammena 2022-11-04 13:54:54 +01:00
parent 6734099e43
commit c5dc06dbc4

View file

@ -60,6 +60,17 @@
android-studio
]);
};
php = {
name = "generic php";
packages = with pkgs; [
php
phpPackages.composer
];
};
nodePhp = {
name = "generic node + php";
packages = with shells; node.packages ++ php.packages;
};
python = {
name = "generic python";
packages = with pkgs; [