feat(rust): add rust profile

This commit is contained in:
Infinidoge 2022-08-02 15:55:48 -04:00
parent 9a45189c1c
commit aeb831da08
3 changed files with 58 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
(fenix.complete.withComponents [
"cargo"
"clippy"
"rust-src"
"rustc"
"rustfmt"
])
rust-analyzer-nightly
gcc
];
}