From dcbb75de162fc7852952fbcd1fb30828f94576a9 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 18 Aug 2025 21:49:25 +0100 Subject: [PATCH] Revert "Remove shell.nix" This reverts commit b52b8a14ad5b71e5bf41f11011b6ad9a069668d0. --- shell.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..2238b00 --- /dev/null +++ b/shell.nix @@ -0,0 +1,11 @@ +{ + pkgs ? import { }, +}: + +pkgs.mkShell { + packages = with pkgs; [ + php + phpPackages.composer + phpactor + ]; +}