mirror of
https://github.com/sadan4/dotfiles.git
synced 2025-01-18 11:13:30 -05:00
add gdb cofnig
This commit is contained in:
parent
cb9eccce25
commit
8abe1f4ff9
2 changed files with 28 additions and 21 deletions
|
@ -1,23 +1,29 @@
|
||||||
{pkgs, unstable, ...}: {
|
{ pkgs, unstable, ... }:
|
||||||
home = {
|
{
|
||||||
packages = with pkgs; [
|
home = {
|
||||||
meson
|
packages = with pkgs; [
|
||||||
autoPatchelfHook
|
meson
|
||||||
cmake
|
autoPatchelfHook
|
||||||
# clang
|
cmake
|
||||||
libgcc
|
# clang
|
||||||
glib
|
libgcc
|
||||||
bear
|
glib
|
||||||
glibc
|
bear
|
||||||
gdb
|
glibc
|
||||||
lldb_19
|
gdb
|
||||||
unstable.llvmPackages_19.clang-tools
|
lldb_19
|
||||||
];
|
unstable.llvmPackages_19.clang-tools
|
||||||
file = {
|
];
|
||||||
eslint_d_config = {
|
file = {
|
||||||
source = ../../../../dotfiles/eslintrc.json;
|
eslint_d_config = {
|
||||||
target = "./.config/.eslintrc.json";
|
source = ../../../../dotfiles/eslintrc.json;
|
||||||
};
|
target = "./.config/.eslintrc.json";
|
||||||
};
|
};
|
||||||
|
gdb_config = {
|
||||||
|
source = ../../../../dotfiles/gdb;
|
||||||
|
target = "./.config/gdb";
|
||||||
|
recursive = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
1
dotfiles/gdb/gdbinit
Normal file
1
dotfiles/gdb/gdbinit
Normal file
|
@ -0,0 +1 @@
|
||||||
|
set auto-load safe-path /
|
Loading…
Reference in a new issue