change symlink to absolute path to the nix store just to be sure

This commit is contained in:
smayzy 2025-06-19 18:05:58 +02:00
parent be21909545
commit c7fb257233

View File

@ -14,35 +14,35 @@
home.file = {
".config/fastfetch" = {
source = ./dotfiles/fastfetch;
source = builtins.toPath ./dotfiles/fastfetch;
recursive = true;
force = true;
};
".config/kitty/kitty.conf" = {
source = ./dotfiles/kitty.conf;
source = builtins.toPath ./dotfiles/kitty.conf;
force = true;
};
".config/hypr" = {
source = ./dotfiles/hypr-desk;
source = builtins.toPath ./dotfiles/hypr-desk;
recursive = true;
force = true;
};
".config/mako/config" = {
source = ./dotfiles/mako/config;
source = builtins.toPath ./dotfiles/mako/config;
force = true;
};
".config/waybar" = {
source = ./dotfiles/waybar-desk;
source = builtins.toPath ./dotfiles/waybar-desk;
recursive = true;
force = true;
};
".config/wofi" = {
source = ./dotfiles/wofi;
source = builtins.toPath ./dotfiles/wofi;
recursive = true;
force = true;
};
".config/wlogout" = {
source = ./dotfiles/wlogout-desk;
source = builtins.toPath ./dotfiles/wlogout-desk;
recursive = true;
force = true;
};