nix-config/home/languages/rust/default.nix

10 lines
105 B
Nix

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