Files
old-nixos-dotfiles/user/dev/lang/cc.nix
2024-08-29 18:54:36 +09:00

15 lines
166 B
Nix

{ pkgs, ... }:
{
home.packages = with pkgs; [
gcc
gdb
cmake
autoconf
automake
gnumake
libtool
clang-analyzer
clang-tools
];
}