feat: add debug adapters to nix shell

This commit is contained in:
Kiana Sheibani 2026-01-24 01:07:32 -05:00
parent 13fb093d33
commit 5ea809eaa0
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
8 changed files with 32 additions and 11 deletions

View file

@ -5,5 +5,8 @@ let inherit (pkgs)
;
in mkShellNoCC {
inputsFrom = [ python3.buildEnv.env ];
packages = [ python3.pkgs.python-lsp-server ];
packages = [
python3.pkgs.python-lsp-server
python3.pkgs.debugpy
];
}