From e12d3494bcd75a09ab51b09bf3f1c941b2d0d5d4 Mon Sep 17 00:00:00 2001 From: Toast <39011842+toast003@users.noreply.github.com> Date: Sun, 7 Jul 2024 15:03:54 +0200 Subject: [PATCH] Add python to the devshell --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index 9bc814b..2a91f11 100644 --- a/flake.nix +++ b/flake.nix @@ -79,6 +79,13 @@ buildInputs = with nixpkgsFor.${system}; [ ruby ruby.devdoc + ( + python3.withPackages ( + pyPkgs: [ + pyPkgs.python-lsp-server + ] + ) + ) ]; }; });