dotfiles/nixos/home-manager/links.nix
Cyryl Płotnicki 635f5902aa
Some checks are pending
use nix / build (push) Waiting to run
cleanup, make checks pass
2024-04-27 11:33:38 +01:00

23 lines
614 B
Nix

{
config,
pkgs,
...
}: {
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
'';
};
}