diff --git a/modules/homebrew.nix b/modules/homebrew.nix index 1c5970d..6cffd3c 100644 --- a/modules/homebrew.nix +++ b/modules/homebrew.nix @@ -14,8 +14,13 @@ # Example: "wget" ]; casks = [ - # GUI applications go here - # Example: "google-chrome" + # GUI applications - manually installed apps now managed by Homebrew + "inkscape" + "firefox" + "obsidian" + "snipaste" + "ghostty" + "slidepilot" ]; taps = [ # Additional repositories if needed diff --git a/modules/zsh.nix b/modules/zsh.nix index 9eba79c..9239754 100644 --- a/modules/zsh.nix +++ b/modules/zsh.nix @@ -113,8 +113,6 @@ in app_path=$( (find -L /Applications -name "*.app" -maxdepth 2 2>/dev/null; \ find -L ~/Applications -name "*.app" -maxdepth 3 2>/dev/null; \ - find -L /opt/homebrew/Caskroom -name "*.app" -maxdepth 3 2>/dev/null; \ - find -L /usr/local/Caskroom -name "*.app" -maxdepth 3 2>/dev/null; \ find /System/Applications -name "*.app" -maxdepth 2 2>/dev/null; \ find /System/Applications/Utilities -name "*.app" -maxdepth 1 2>/dev/null) | sort | uniq |