forked from extern/nix-config
12 lines
127 B
Nix
12 lines
127 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
gcc
|
|
rustc
|
|
rustfmt
|
|
cargo
|
|
rust-analyzer
|
|
];
|
|
}
|