system/pkgs/lang/cc/cc.nix

13 lines
162 B
Nix
Raw Normal View History

2024-10-14 17:28:31 -04:00
{ pkgs, ... }:
{
home.packages = with pkgs; [
# CC
gcc
# gnumake
# cmake
autoconf
automake
libtool
];
}