no debugger for now

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-23 23:12:34 -05:00
parent af0ec5a316
commit 678fa04870

View File

@ -20,20 +20,16 @@
devShells.default = with pkgs; mkShell {
buildInputs = [
rust-bin.beta.latest.default
# rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)
];
packages = with pkgs; [
rust-bin.beta.latest.clippy
rust-bin.beta.latest.rust-analyzer
rust-bin.beta.latest.rustfmt
# rust-bin.beta.latest.rustup
rust-bin.beta.latest.rust-std
rust-bin.beta.latest.rust-lib-src
jetbrains.rust-rover
];
shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
export RUST_SRC_PATH=${pkgs.rust-bin.beta.latest.rust-lib-src}
'';
};
}