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; };