nixos-config/user/lang/cc/cc.nix

14 lines
155 B
Nix
Raw Normal View History

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