dotfiles/nixos/home-manager/links.nix

16 lines
480 B
Nix
Raw Normal View History

2019-11-23 09:03:58 +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
'';
2019-11-23 09:03:58 +00:00
}