From f7441f9c42254bdf1712e99bbe2cc15b0f825d16 Mon Sep 17 00:00:00 2001 From: ethernet Date: Wed, 20 May 2026 10:37:06 -0400 Subject: [PATCH] fix(nix): add xclip and wl-copy --- nix/hermes-agent.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nix/hermes-agent.nix b/nix/hermes-agent.nix index 6c391878cc5..f373c25bcda 100644 --- a/nix/hermes-agent.nix +++ b/nix/hermes-agent.nix @@ -16,6 +16,11 @@ openssh, ffmpeg, tirith, + + # linux-only deps + wl-clipboard, + xclip, + # Flake inputs — passed explicitly by packages.nix and overlays.nix uv2nix, pyproject-nix, @@ -68,6 +73,10 @@ let openssh ffmpeg tirith + ] + ++ lib.optionals stdenv.isLinux [ + wl-clipboard + xclip ]; runtimePath = lib.makeBinPath runtimeDeps;