From 1a64bf2db6f4d61adac901f55fd0c2a9bc88e0de Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 18 Aug 2025 21:14:58 +0100 Subject: [PATCH] Automated commit Signed-off-by: Oliver Davies --- flake.nix | 8 +++++++- shell.nix | 11 ----------- 2 files changed, 7 insertions(+), 12 deletions(-) delete mode 100644 shell.nix diff --git a/flake.nix b/flake.nix index a319105..f8fcf16 100644 --- a/flake.nix +++ b/flake.nix @@ -10,6 +10,12 @@ pkgs = import inputs.nixpkgs { inherit system; }; in { - devShells.${system}.default = (import ./shell.nix { inherit pkgs; }); + devShells.${system}.default = pkgs.mkShell { + packages = with pkgs; [ + php + phpPackages.composer + phpactor + ]; + }; }; } diff --git a/shell.nix b/shell.nix deleted file mode 100644 index 2238b00..0000000 --- a/shell.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ - pkgs ? import { }, -}: - -pkgs.mkShell { - packages = with pkgs; [ - php - phpPackages.composer - phpactor - ]; -}