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