12 lines
138 B
Nix
12 lines
138 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
config.machine.pkgsets.cpp.pkgs = with pkgs; [
|
||
|
clang
|
||
|
cmake
|
||
|
gcc
|
||
|
global
|
||
|
irony-server
|
||
|
];
|
||
|
}
|