dotfiles/common/users/homeModules/dev/cpp.nix

20 lines
438 B
Nix
Raw Normal View History

2024-11-26 18:14:29 -05:00
{pkgs, unstable, ...}: {
2024-11-26 17:01:58 -05:00
home = {
packages = with pkgs; [
meson
cmake
2024-12-11 19:20:06 -05:00
# clang
libgcc
2024-11-26 17:01:58 -05:00
glib
glibc
2024-11-26 18:14:29 -05:00
unstable.llvmPackages_19.clang-tools
2024-11-26 17:01:58 -05:00
];
file = {
eslint_d_config = {
2024-11-26 17:22:09 -05:00
source = ../../../../dotfiles/eslintrc.json;
2024-11-26 17:01:58 -05:00
target = "./.config/.eslintrc.json";
};
};
};
2024-12-11 19:20:06 -05:00
}