more cargo

This commit is contained in:
2025-08-11 11:28:40 -06:00
parent bc836e8985
commit aefa423d38
4 changed files with 15 additions and 3 deletions

View File

@@ -46,11 +46,11 @@
let pkgs = import nixpkgs { inherit system; }; in {
default = pkgs.mkShell {
buildInputs = with pkgs; [
rustc cargo rustfmt clippy rust-analyzer rust-src
rustc cargo rustfmt clippy rust-analyzer
gnome-monitor-config xorg.xrandr bash coreutils
];
shellHook = ''
export RUST_SRC_PATH=${pkgs.rust-src}/lib/rustlib/src/rust/library
export RUST_SRC_PATH=${pkgs.rustPlatform.rustLibSrc}
'';
};
}