1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00

feat(rust): manage cargo commands

This commit is contained in:
Ryan Cao 2024-01-16 17:03:10 +08:00
parent e9c828cabf
commit 661ff3f1a0
Signed by: ryanccn
SSH key fingerprint: SHA256:NtP/BlVhoQq4xU6BEcZeT8nIPvHntkJ3lIc2yB+F09E
2 changed files with 8 additions and 1 deletions

View file

@ -8,4 +8,12 @@ in {
home.file.".cargo/config.toml".source = toml.generate "config.toml" {
build.target-dir = "${config.home.homeDirectory}/.cargo/target";
};
home.packages = with pkgs; [
cargo-bloat
cargo-cache
cargo-deny
cargo-expand
cargo-watch
];
}