universe/profiles/develop/programming/rust.nix

13 lines
222 B
Nix

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