From 8fd252d743383adead73cbf237e817d2ef2cf3b8 Mon Sep 17 00:00:00 2001 From: teutat3s Date: Mon, 7 Oct 2024 15:41:44 +0200 Subject: [PATCH] devshell: add phpactor LSP --- flake.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/flake.nix b/flake.nix index c51580a..4b7aef5 100644 --- a/flake.nix +++ b/flake.nix @@ -15,6 +15,11 @@ systems = [ "x86_64-linux" "aarch64-linux" ]; perSystem = { config, pkgs, final, ... }: { + devShells.default = pkgs.mkShell { + buildInputs = with pkgs; [ + phpactor + ]; + }; overlayAttrs = { inherit (config.packages) invoiceplane-template; };