add gdb dashboard

This commit is contained in:
Cyryl Płotnicki 2020-05-09 16:04:51 +01:00
parent bc34ade7d6
commit 089b98b5e7
4 changed files with 2276 additions and 0 deletions

2269
.gdbinit Normal file

File diff suppressed because it is too large Load diff

View file

@ -15,5 +15,6 @@
nixops imagemagick nixops imagemagick
docker-compose rustup docker-compose rustup
knockknock knockknock
python38Packages.pygments
]; ];
} }

View file

@ -24,6 +24,7 @@ in
}; };
}; };
environment.enableDebugInfo = true;
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
wget git gnupg curl tmux glances htop atop firefox home-manager alacritty pciutils powertop ripgrep-all fd dnsutils wget git gnupg curl tmux glances htop atop firefox home-manager alacritty pciutils powertop ripgrep-all fd dnsutils
]; ];

View file

@ -2,4 +2,9 @@
{ {
home.file.".config/nixpkgs/config.nix".source = ~/dev/dotfiles/nixos/shell-config.nix; home.file.".config/nixpkgs/config.nix".source = ~/dev/dotfiles/nixos/shell-config.nix;
home.file.".gdbinit".text = ''
set auto-load python-scripts on
add-auto-load-safe-path /home/cyryl/dev/dotfiles/.gdbinit
source /home/cyryl/dev/dotfiles/.gdbinit
'';
} }