mirror of
https://github.com/oddlama/nix-config.git
synced 2025-10-10 23:00:39 +02:00
19 lines
360 B
Nix
19 lines
360 B
Nix
{
|
|
home.file.gdbinit = {
|
|
target = ".gdbinit";
|
|
text = ''
|
|
set auto-load safe-path /
|
|
set debuginfod enabled on
|
|
|
|
set history save on
|
|
set history filename ~/.local/share/gdb/history
|
|
|
|
set disassembly-flavor intel
|
|
set print pretty on
|
|
'';
|
|
};
|
|
|
|
home.persistence."/state".directories = [
|
|
".local/share/gdb"
|
|
];
|
|
}
|