dotfiles/common/users/homeModules/dev/cpp.nix
2024-12-17 16:26:58 -05:00

22 lines
491 B
Nix

{pkgs, unstable, ...}: {
home = {
packages = with pkgs; [
meson
cmake
# clang
libgcc
glib
bear
glibc
gdb
lldb_19
unstable.llvmPackages_19.clang-tools
];
file = {
eslint_d_config = {
source = ../../../../dotfiles/eslintrc.json;
target = "./.config/.eslintrc.json";
};
};
};
}