summary refs log tree commit diff stats
path: root/user/settings/development/rust.nix
blob: c1b1a9dfef2d1e076e09e9b7c396f6cbf0049a22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config
, pkgs
, ...
}: {
  home.packages = with pkgs; [
    cargo
    cargo-edit
    rustc
    rustfmt
    rust-analyzer
    clippy
  ];
}