Better rust and latex configuration

This commit is contained in:
Filippo Berto 2022-12-24 15:19:02 +01:00
parent f93a17a74f
commit 1011735683
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
4 changed files with 62 additions and 5 deletions

View file

@ -1,3 +1,32 @@
{ pkgs, lib, config, ... }: {
home.packages = with pkgs; [ bacon cargo clippy rustfmt ] ++ (lib.optionals config.programs.helix.enable [ rust-analyzer ]);
home.packages = with pkgs; [
bacon
cargo
# cargo-about
cargo-audit
# cargo-auditable
cargo-criterion
cargo-deadlinks
# cargo-deny
# cargo-deps
cargo-expand
# cargo-feature
cargo-flamegraph
cargo-fuzz
cargo-hack
cargo-hakari
cargo-inspect
cargo-modules
cargo-outdated
cargo-profiler
cargo-release
cargo-show-asm
cargo-spellcheck
cargo-tarpaulin
cargo-udeps
cargo-watch
cargo-workspaces
clippy
rustfmt
] ++ (lib.optionals config.programs.helix.enable [ rust-analyzer ]);
}