dotnix/apps/nogui/rust.nix

12 lines
124 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
rustc
cargo
rustfmt
clippy
rust-analyzer
gcc
];
}