1
0
forked from extern/nix-config
donovanglover-nix-config/dev/rust/default.nix

12 lines
127 B
Nix
Raw Normal View History

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