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