add gdb dashboard
This commit is contained in:
parent
bc34ade7d6
commit
089b98b5e7
4 changed files with 2276 additions and 0 deletions
|
@ -15,5 +15,6 @@
|
||||||
nixops imagemagick
|
nixops imagemagick
|
||||||
docker-compose rustup
|
docker-compose rustup
|
||||||
knockknock
|
knockknock
|
||||||
|
python38Packages.pygments
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
|
|
|
@ -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
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue