From 591f70a2370d08c2fff756eaad030831d6778b59 Mon Sep 17 00:00:00 2001 From: Barrett Ruth Date: Mon, 23 Feb 2026 17:37:47 -0500 Subject: [PATCH] build(flake): add lua-language-server to devShell Problem: lua-language-server is not available in the dev shell, making it impossible to run local type-checking diagnostics. Solution: add lua-language-server to the devShell packages. --- flake.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/flake.nix b/flake.nix index 705747f..7e1551b 100644 --- a/flake.nix +++ b/flake.nix @@ -65,6 +65,7 @@ packages = with (pkgsFor system); [ uv python312 + lua-language-server ]; }; });