nixos/modules/rust.nix
2025-06-08 23:41:20 +00:00

18 lines
328 B
Nix

{ config, lib, pkgs, inputs, ... }:
{
nixpkgs.overlays = [ inputs.fenix.overlays.default ];
environment.systemPackages = with pkgs; [
(fenix.complete.withComponents [
"rustc"
"cargo"
"rustfmt"
"rust-src"
"rust-analyzer"
"clippy"
"miri"
])
sccache
cargo-edit
];
}