nix-config/dev/rust/default.nix
2023-05-19 02:54:35 -04:00

11 lines
109 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gcc
rustc
rustfmt
cargo
];
}