dotfiles/nixos/home-manager/links.nix
2021-01-30 14:28:54 +00:00

12 lines
311 B
Nix

{ config, pkgs, ... }:
{
home.file.".config/nixpkgs/config.nix".source = ../shell-config.nix;
home.file.".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
'';
}