home: Add misc config files

restic-rest-server
Simon Bruder 2020-11-07 15:52:04 +01:00
parent 5b571bd0c0
commit a01adec1f0
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
2 changed files with 40 additions and 0 deletions

View File

@ -35,6 +35,7 @@ in
./modules/git.nix
./modules/gtk.nix
./modules/htop.nix
./modules/misc.nix
./modules/mpd.nix
./modules/sway.nix
./modules/xdg.nix

View File

@ -0,0 +1,39 @@
{
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
'';
};
}