Revert "Remove shell.nix"

This reverts commit b52b8a14ad.
This commit is contained in:
Oliver Davies 2025-08-18 21:49:25 +01:00
parent b0496042de
commit dcbb75de16

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
packages = with pkgs; [
php
phpPackages.composer
phpactor
];
}