From 2b5dce57279d36996d9bcecb2076cedebbf1ccc0 Mon Sep 17 00:00:00 2001 From: mikl Date: Sat, 4 Jul 2026 00:54:10 +0300 Subject: [PATCH] kitty: copy app to ~/Applications/ for Spotlight indexing; update Dock path --- home/kitty.nix | 7 +++++++ hosts/poppy/system.nix | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/home/kitty.nix b/home/kitty.nix index eadc072..5e07421 100644 --- a/home/kitty.nix +++ b/home/kitty.nix @@ -1,5 +1,12 @@ { pkgs, ... }: { + # Copy kitty.app to ~/Applications/ for Spotlight indexing + # (home-manager creates symlink, Spotlight doesn't index symlinks) + home.file."Applications/kitty.app" = { + source = "${pkgs.kitty}/Applications/kitty.app"; + recursive = true; + }; + programs.kitty = { enable = true; diff --git a/hosts/poppy/system.nix b/hosts/poppy/system.nix index 04a822d..f2160ac 100644 --- a/hosts/poppy/system.nix +++ b/hosts/poppy/system.nix @@ -132,7 +132,7 @@ "/System/Applications/Calendar.app" "/Applications/Obsidian.app" "/Applications/VSCodium.app" - "/Users/mikl/Applications/Home Manager Apps/kitty.app" + "/Users/mikl/Applications/kitty.app" "/System/Applications/Books.app" "/System/Applications/QuickTime Player.app" ];