home: Add misc config files
This commit is contained in:
parent
5b571bd0c0
commit
a01adec1f0
|
@ -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
|
||||
|
|
39
users/simon/modules/misc.nix
Normal file
39
users/simon/modules/misc.nix
Normal 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
|
||||
'';
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue