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

@ -8,5 +8,9 @@ let
toolchain = fenixPkgs.${fenixToolchain}.toolchain;
craneLib = (crane.mkLib pkgs).overrideToolchain toolchain;
in craneLib.devShell {
packages = [ fenixPkgs.rust-analyzer ];
packages = [
toolchain
fenixPkgs.rust-analyzer
pkgs.lldb_21
];
}

View file

@ -7,5 +7,9 @@ let
fenixPkgs = fenix.packages.${pkgs.system};
toolchain = fenixPkgs.${fenixToolchain}.toolchain;
in mkShellNoCC {
packages = [ toolchain fenixPkgs.rust-analyzer ];
packages = [
toolchain
fenixPkgs.rust-analyzer
pkgs.lldb_21
];
}