From c7fb257233f9862392179dd84fcf912a41e36ea2 Mon Sep 17 00:00:00 2001 From: smayzy Date: Thu, 19 Jun 2025 18:05:58 +0200 Subject: [PATCH] change symlink to absolute path to the nix store just to be sure --- home.nix | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/home.nix b/home.nix index c293482..c2c8514 100644 --- a/home.nix +++ b/home.nix @@ -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; };