18 lines
328 B
Nix
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
|
|
];
|
|
}
|