nix-config/dev/rust/default.nix

11 lines
109 B
Nix
Raw Normal View History

2023-05-19 08:54:35 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
gcc
rustc
rustfmt
cargo
];
}