2019-11-23 09:03:58 +00:00
|
|
|
{
|
2022-12-19 09:09:08 +00:00
|
|
|
config,
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}: {
|
2024-04-27 11:33:38 +01:00
|
|
|
home.file = {
|
|
|
|
".config/nixpkgs/config.nix".source = ../shell-config.nix;
|
|
|
|
".gdbinit".text = ''
|
|
|
|
set auto-load python-scripts on
|
|
|
|
add-auto-load-safe-path /home/cyryl/dev/dotfiles/.gdbinit
|
|
|
|
set auto-load safe-path /
|
|
|
|
source /home/cyryl/dev/dotfiles/.gdbinit
|
|
|
|
'';
|
|
|
|
".gdbinit.d/dashboard".text = ''
|
|
|
|
dashboard -layout breakpoints source expressions stack threads variables
|
|
|
|
dashboard variables -style compact 0
|
|
|
|
dashboard source -style height 24
|
|
|
|
dashboard stack -style compact 1
|
|
|
|
dashboard stack -style limit 3
|
|
|
|
'';
|
|
|
|
};
|
2019-11-23 09:03:58 +00:00
|
|
|
}
|