From fcee45bdb66860a48ce233d45ced97baa781ccc3 Mon Sep 17 00:00:00 2001 From: Javier Feliz Date: Fri, 12 Sep 2025 14:05:41 -0400 Subject: [PATCH] See if this fixes the icon issue --- modules/home-manager/waycast.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/modules/home-manager/waycast.nix b/modules/home-manager/waycast.nix index eeafb28..7f4a6c2 100644 --- a/modules/home-manager/waycast.nix +++ b/modules/home-manager/waycast.nix @@ -81,5 +81,11 @@ in # Ensure cache and data dirs exist to avoid runtime errors in the future home.file."${config.xdg.cacheHome}/waycast/.keep".text = ""; home.file."${config.xdg.dataHome}/waycast/.keep".text = ""; + + # Install waycast icons to XDG_DATA_HOME + home.file."${config.xdg.dataHome}/waycast/icons" = { + source = "${cfg.package}/share/waycast/icons"; + recursive = true; + }; }; }