mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-07 21:39:35 +01:00
12 lines
127 B
Nix
12 lines
127 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
gcc
|
|
rustc
|
|
rustfmt
|
|
cargo
|
|
rust-analyzer
|
|
];
|
|
}
|