system/pkgs/lang/cc/cc.nix
2024-10-14 14:28:31 -07:00

13 lines
162 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
# CC
gcc
# gnumake
# cmake
autoconf
automake
libtool
];
}