kitty: copy app to ~/Applications/ for Spotlight indexing; update Dock path
This commit is contained in:
parent
a689d23a8e
commit
2b5dce5727
2 changed files with 8 additions and 1 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
];
|
||||
|
|
|
|||
Loading…
Reference in a new issue