tvl-depot/users/grfn/system/home/modules/development/rust.nix
Griffin Smith ffe77cbc9c feat(grfn/system): Install some rust profiling tools
Change-Id: I0d68c0c20b29ecd48b7c63c5a5498ccb7cc685fd
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8162
Reviewed-by: grfn <grfn@gws.fyi>
Autosubmit: grfn <grfn@gws.fyi>
Tested-by: BuildkiteCI
2023-02-27 15:16:44 +00:00

46 lines
829 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
inferno
hotspot
];
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"]
'';
}