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

30 lines
541 B
Nix
Raw Normal View History

2024-12-19 00:57:04 -05:00
{ pkgs, unstable, ... }:
{
home = {
packages = with pkgs; [
meson
autoPatchelfHook
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";
};
gdb_config = {
source = ../../../../dotfiles/gdb;
target = "./.config/gdb";
recursive = true;
};
2024-11-26 17:01:58 -05:00
};
2024-12-19 00:57:04 -05:00
};
2024-12-11 19:20:06 -05:00
}