environments/rust: init

This commit is contained in:
Primrose 2025-05-21 12:20:55 +02:00
parent 7d3987bdc8
commit 6af093062a
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

16
nix/environments/rust.nix Normal file
View file

@ -0,0 +1,16 @@
{
buildEnv,
#
pkgs,
}:
buildEnv {
name = "rust";
paths = with pkgs; [
gcc
cargo
rustc
rustfmt
rust-analyzer
];
}