NixOS/shells/rust.nix
2026-02-15 11:10:32 -05:00

16 lines
253 B
Nix

{
pkgs ? import <nixpkgs> { },
}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
];
shellHook = ''
rustup default stable
rustup component add rustfmt
rustup component add clippy
rustup component add rust-analyzer
'';
}