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