Add rust tools

This commit is contained in:
willifan 2024-05-22 19:15:46 +02:00
parent 42931f9dbd
commit 8768d12ad6
2 changed files with 11 additions and 0 deletions

View file

@ -2,6 +2,7 @@
{
imports = [
./rust.nix
./vscodium.nix
];
}

View file

@ -0,0 +1,10 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
rustup
probe-rs
cargo-binutils
];
}