mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-02-14 17:00:26 +01:00
11 lines
109 B
Nix
11 lines
109 B
Nix
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
gcc
|
||
|
rustc
|
||
|
rustfmt
|
||
|
cargo
|
||
|
];
|
||
|
}
|