move all the dotfiles to .config

This commit is contained in:
stupidcomputer 2024-04-06 17:29:20 -05:00
parent 4e01d44bff
commit 8875a7c219
39 changed files with 21 additions and 21 deletions

View File

@ -9,10 +9,10 @@
home.file = { home.file = {
".config/bash/bashrc" = { ".config/bash/bashrc" = {
source = ./bashrc; source = ../../.config/bash/bashrc;
}; };
".config/bash/profile" = { ".config/bash/profile" = {
source = ./profile; source = ../../.config/bash/profile;
}; };
}; };
} }

View File

@ -8,7 +8,7 @@
home.file = { home.file = {
".config/bspwm/bspwmrc" = { ".config/bspwm/bspwmrc" = {
source = ./bspwmrc; source = ../../.config/bspwm/bspwmrc;
}; };
}; };
} }

View File

@ -7,7 +7,7 @@
home.file = { home.file = {
".config/elinks/elinks.conf" = { ".config/elinks/elinks.conf" = {
source = ./elinks.conf; source = ../../.config/elinks/elinks.conf;
}; };
}; };
} }

View File

@ -5,7 +5,7 @@
home.file = { home.file = {
".config/emacs/init.el" = { ".config/emacs/init.el" = {
source = ./init.el; source = ../../.config/emacs/init.el;
}; };
}; };
} }

View File

@ -5,7 +5,7 @@
home.file = { home.file = {
".config/git/config" = { ".config/git/config" = {
source = ./config; source = ../../.config/git/config;
}; };
}; };
} }

View File

@ -5,7 +5,7 @@
home.file = { home.file = {
".config/htop/htoprc" = { ".config/htop/htoprc" = {
source = ./htoprc; source = ../../.config/htop/htoprc;
}; };
}; };
} }

View File

@ -7,7 +7,7 @@
home.file = { home.file = {
".config/isync/config" = { ".config/isync/config" = {
source = ./config; source = ../../.config/isync/config;
}; };
}; };
} }

View File

@ -7,7 +7,7 @@
home.file = { home.file = {
".config/khal/config" = { ".config/khal/config" = {
source = ./config; source = ../../.config/khal/config;
}; };
}; };
} }

View File

@ -7,7 +7,7 @@
home.file = { home.file = {
".config/msmtp/config" = { ".config/msmtp/config" = {
source = ./config; source = ../../.config/msmtp/config;
}; };
}; };
} }

View File

@ -7,7 +7,7 @@
home.file = { home.file = {
".config/neomutt/neomuttrc" = { ".config/neomutt/neomuttrc" = {
source = ./neomuttrc; source = ../../.config/neomutt/neomuttrc;
}; };
}; };
} }

View File

@ -11,10 +11,10 @@
home.file = { home.file = {
".config/nvim/init.lua" = { ".config/nvim/init.lua" = {
source = ./init.lua; source = ../../.config/nvim/init.lua;
}; };
".config/nvim/colors/earth.vim" = { ".config/nvim/colors/earth.vim" = {
source = ./colors/earth.vim; source = ../../.config/nvim/colors/earth.vim;
}; };
}; };
} }

View File

@ -3,7 +3,7 @@
{ {
home.file = { home.file = {
".config/python/pythonrc" = { ".config/python/pythonrc" = {
source = ./pythonrc.py; source = ../../.config/python/pythonrc.py;
}; };
}; };
} }

View File

@ -5,7 +5,7 @@
home.file = { home.file = {
".config/sx/sxrc" = { ".config/sx/sxrc" = {
source = ./sxrc; source = ../../.config/sx/sxrc;
}; };
}; };
} }

View File

@ -8,10 +8,10 @@
home.file = { home.file = {
".config/sxhkd/sxhkdrc" = { ".config/sxhkd/sxhkdrc" = {
source = ./sxhkdrc; source = ../../.config/sxhkd/sxhkdrc;
}; };
".config/sxhkd/mouse" = { ".config/sxhkd/mouse" = {
source = ./mouse; source = ../../.config/sxhkd/mouse;
}; };
}; };
} }

View File

@ -7,7 +7,7 @@
home.file = { home.file = {
".config/todoman/config.py" = { ".config/todoman/config.py" = {
source = ./config.py; source = ../../.config/todoman/config.py;
}; };
}; };
} }

View File

@ -3,7 +3,7 @@
{ {
home.file = { home.file = {
".config/tridactyl/tridactylrc" = { ".config/tridactyl/tridactylrc" = {
source = ./tridactylrc; source = ../../.config/tridactyl/tridactylrc;
}; };
}; };
} }

View File

@ -7,7 +7,7 @@
home.file = { home.file = {
".config/vdirsyncer/config" = { ".config/vdirsyncer/config" = {
source = ./config; source = ../../.config/vdirsyncer/config;
}; };
}; };
} }

View File

@ -3,6 +3,6 @@
{ {
programs.zathura = { programs.zathura = {
enable = true; enable = true;
extraConfig = (builtins.readFile ./zathurarc); extraConfig = (builtins.readFile ../../.config/zathura/zathurarc);
}; };
} }