summary refs log tree commit diff stats
path: root/user/settings/development/rust.nix
blob: d45b1a19d591b4ae62012c6d931457d599a55de4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, pkgs, ... }:

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