From ba84a4650d3660b59635a4611dff28cf6302b47e Mon Sep 17 00:00:00 2001 From: C4 Patino Date: Sun, 28 Jun 2026 17:58:22 -0500 Subject: [PATCH] feat: add rclip semantic image search to desktop bundle --- modules/home/bundles/desktop/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/home/bundles/desktop/default.nix b/modules/home/bundles/desktop/default.nix index 125aa79..fa48fe7 100644 --- a/modules/home/bundles/desktop/default.nix +++ b/modules/home/bundles/desktop/default.nix @@ -2,6 +2,7 @@ config, lib, namespace, + pkgs, ... }: let inherit (lib) mkIf mkEnableOption; @@ -38,5 +39,9 @@ in { slurp = enabled; }; }; + + home.packages = with pkgs; [ + rclip + ]; }; }