40 lines
736 B
Nix
40 lines
736 B
Nix
{
|
|
home.file = {
|
|
".sqliterc".text = ''
|
|
.headers ON
|
|
'';
|
|
|
|
".pylintrc".text = ''
|
|
disable =
|
|
import-error,
|
|
invalid-name,
|
|
missing-docstring,
|
|
too-few-public-methods,
|
|
too-many-arguments,
|
|
too-many-instance-attributes
|
|
'';
|
|
|
|
".gdbinit".text = ''
|
|
# history
|
|
set history save on
|
|
set history filename ~/.gdb_history
|
|
|
|
# safe directories are not managed (include per-project paths)
|
|
source ~/.gdb_safe
|
|
'';
|
|
|
|
".docker-ls.yaml".text = ''
|
|
registry: https://r.sbruder.de
|
|
user: simon
|
|
'';
|
|
};
|
|
|
|
xdg.configFile = {
|
|
"pycodestyle".text = ''
|
|
[pycodestyle]
|
|
ignore = E265
|
|
max-line-length = 120
|
|
'';
|
|
};
|
|
}
|