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 = { home.file = {
".config/fastfetch" = { ".config/fastfetch" = {
source = ./dotfiles/fastfetch; source = builtins.toPath ./dotfiles/fastfetch;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/kitty/kitty.conf" = { ".config/kitty/kitty.conf" = {
source = ./dotfiles/kitty.conf; source = builtins.toPath ./dotfiles/kitty.conf;
force = true; force = true;
}; };
".config/hypr" = { ".config/hypr" = {
source = ./dotfiles/hypr-desk; source = builtins.toPath ./dotfiles/hypr-desk;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/mako/config" = { ".config/mako/config" = {
source = ./dotfiles/mako/config; source = builtins.toPath ./dotfiles/mako/config;
force = true; force = true;
}; };
".config/waybar" = { ".config/waybar" = {
source = ./dotfiles/waybar-desk; source = builtins.toPath ./dotfiles/waybar-desk;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/wofi" = { ".config/wofi" = {
source = ./dotfiles/wofi; source = builtins.toPath ./dotfiles/wofi;
recursive = true; recursive = true;
force = true; force = true;
}; };
".config/wlogout" = { ".config/wlogout" = {
source = ./dotfiles/wlogout-desk; source = builtins.toPath ./dotfiles/wlogout-desk;
recursive = true; recursive = true;
force = true; force = true;
}; };