From 8bdb711968cfa958da18f9c0e9fb9c5718eeb75a Mon Sep 17 00:00:00 2001 From: Colin Date: Fri, 6 Sep 2024 04:44:24 +0000 Subject: [PATCH] grimshot: fix sandboxing so that wl-clipboard can actually copy stuff to the clipboard --- hosts/common/programs/grimshot.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/hosts/common/programs/grimshot.nix b/hosts/common/programs/grimshot.nix index c75522c59..969a69892 100644 --- a/hosts/common/programs/grimshot.nix +++ b/hosts/common/programs/grimshot.nix @@ -15,6 +15,7 @@ "wl-clipboard" ]; sandbox.method = "bunpen"; + sandbox.keepPids = true; #< needed by wl-clipboard sandbox.whitelistWayland = true; sandbox.whitelistDbus = [ "user" ]; sandbox.autodetectCliPaths = "existingFileOrParent";