fix(nixos): repair some broken relative paths to build successfully

This commit is contained in:
Youwen Wu 2024-08-06 00:11:19 -07:00
parent fa7e3d178e
commit ccd6199d95
2 changed files with 3 additions and 3 deletions

View file

@ -19,9 +19,9 @@
# xxx
# '';
home.file.".config/neofetch/config.conf".source = ./config/neofetch.conf;
home.file.".config/neofetch/config.conf".source = ../../../config/neofetch.conf;
home.file.".wallpapers" = {
source = ./wallpapers;
source = ../../../wallpapers;
recursive = true;
};