aboutsummaryrefslogtreecommitdiff
path: root/nixos/languages/c.nix
blob: 12fee3472058a6001bee53d02e7dfe1cef02af8b (plain)
1
2
3
4
5
6
7
8
{ config, pkgs, ... }:
{
  environment.systemPackages = with pkgs; [
    gcc
    cmake
    clang-tools
  ];
}