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 = {
".config/bash/bashrc" = {
source = ./bashrc;
source = ../../.config/bash/bashrc;
};
".config/bash/profile" = {
source = ./profile;
source = ../../.config/bash/profile;
};
};
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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