nixos/shells/rust.nix
2025-04-17 12:00:50 +02:00

15 lines
175 B
Nix

{ pkgs, ... }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
rustfmt
rust-analyzer
clippy
];
RUST_BACKTRACE = 1;
RUSTC_BOOTSTRAP = true;
}