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

@ -4,7 +4,8 @@ let inherit (pkgs)
rustc
cargo
rust-analyzer
lldb_21
;
in mkShellNoCC {
packages = [ rustc cargo rust-analyzer ];
packages = [ rustc cargo rust-analyzer lldb_21 ];
}