10 lines
97 B
Nix
10 lines
97 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
gcc
|
|
cmake
|
|
clang
|
|
];
|
|
}
|