tvl-depot/users/grfn/system/home/modules/development/rust.nix
Griffin Smith bdf614ec3d feat(grfn/home): Install some new rust utilities
Change-Id: I9e210a86a037c58aa832b25203b5ac8c27306aa3
Reviewed-on: https://cl.tvl.fyi/c/depot/+/5933
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: grfn <grfn@gws.fyi>
2022-07-11 14:43:37 +00:00

44 lines
805 B
Nix

{ config, lib, pkgs, ... }:
let
inherit (config.lib) depot;
in
{
home.packages = with pkgs; [
rustup
rust-analyzer
cargo-edit
cargo-expand
cargo-rr
cargo-udeps
cargo-bloat
sccache
evcxr
depot.users.grfn.pkgs.cargo-hakari
depot.users.grfn.pkgs.cargo-nextest
# benchmarking+profiling
cargo-criterion
cargo-flamegraph
coz
];
programs.zsh.shellAliases = {
"cg" = "cargo";
"cb" = "cargo build";
"ct" = "cargo test";
"ctw" = "fd -e rs | entr cargo test";
"cch" = "cargo check";
};
home.file.".cargo/config".text = ''
[build]
rustc-wrapper = "${pkgs.sccache}/bin/sccache"
[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=${pkgs.mold}/bin/mold"]
'';
}