try rust-bin path

This commit is contained in:
Rowan Torbitzky-Lane 2025-04-23 22:54:45 -05:00
parent 89dcab6287
commit 364eb53962

View File

@ -23,10 +23,16 @@
# rust-bin.selectLatestNightlyWith (toolchain: toolchain.default) # rust-bin.selectLatestNightlyWith (toolchain: toolchain.default)
]; ];
packages = with pkgs; [ 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.rust-src
jetbrains.rust-rover jetbrains.rust-rover
]; ];
shellHook = '' shellHook = ''
export SHELL=${pkgs.lib.getExe pkgs.bashInteractive} export SHELL=${pkgs.lib.getExe pkgs.bashInteractive}
export RUST_SRC=${pkgs.rust-bin.beta.latest.rust-src}
''; '';
}; };
} }