feat(home): rust developpement

This commit is contained in:
Ahurac 2024-11-14 13:52:29 +01:00
parent b900dd9774
commit e72533b15c

View file

@ -9,6 +9,8 @@
home.packages = with pkgs; [ home.packages = with pkgs; [
clang-tools clang-tools
d2 d2
rust-analyzer
cargo
tinymist tinymist
typst typst
ipcalc ipcalc
@ -116,6 +118,11 @@
auto-format = true; auto-format = true;
formatter.command = "${pkgs.google-java-format}/bin/google-java-format"; formatter.command = "${pkgs.google-java-format}/bin/google-java-format";
} }
{
name = "rust";
auto-format = true;
formatter.command = "${pkgs.rustfmt}/bin/rustfmt";
}
]; ];
}; };