dotfiles/nixos/home-manager/links.nix

21 lines
595 B
Nix
Raw Normal View History

2019-11-23 09:03:58 +00:00
{
2022-12-19 09:09:08 +00:00
config,
pkgs,
...
}: {
2020-07-25 09:01:20 +01:00
home.file.".config/nixpkgs/config.nix".source = ../shell-config.nix;
2020-05-09 16:04:51 +01:00
home.file.".gdbinit".text = ''
set auto-load python-scripts on
add-auto-load-safe-path /home/cyryl/dev/dotfiles/.gdbinit
2021-01-30 14:28:54 +00:00
set auto-load safe-path /
2020-05-09 16:04:51 +01:00
source /home/cyryl/dev/dotfiles/.gdbinit
'';
2021-01-30 15:56:36 +00:00
home.file.".gdbinit.d/dashboard".text = ''
dashboard -layout breakpoints source expressions stack threads variables
dashboard variables -style compact 0
2021-01-30 16:01:03 +00:00
dashboard source -style height 24
dashboard stack -style compact 1
dashboard stack -style limit 3
2021-01-30 15:56:36 +00:00
'';
2019-11-23 09:03:58 +00:00
}