10 lines
309 B
Nix
10 lines
309 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
home.file.".config/nixpkgs/config.nix".source = /home/cyryl/dev/dotfiles/nixos/shell-config.nix;
|
|
home.file.".gdbinit".text = ''
|
|
set auto-load python-scripts on
|
|
add-auto-load-safe-path /home/cyryl/dev/dotfiles/.gdbinit
|
|
source /home/cyryl/dev/dotfiles/.gdbinit
|
|
'';
|
|
}
|