From 94f2c1843200529b64336b56f4cfba321d5284ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Sun, 18 Dec 2022 13:51:22 +0100 Subject: [PATCH] feat(autocutsel): disable because i dont want to paste everything i select --- configs/clipboard.nix | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/configs/clipboard.nix b/configs/clipboard.nix index 1d7e8b5..8d20597 100644 --- a/configs/clipboard.nix +++ b/configs/clipboard.nix @@ -4,18 +4,4 @@ ... }: { services.clipmenu.enable = true; - - # synchronize all the clipboards - systemd.user.services.autocutsel = { - enable = true; - wantedBy = ["graphical-session.target"]; - after = ["graphical-session.target"]; - serviceConfig = { - Type = "forking"; - ExecStart = pkgs.writers.writeDash "autocutsel" '' - ${pkgs.autocutsel}/bin/autocutsel -fork -selection PRIMARY - ${pkgs.autocutsel}/bin/autocutsel -fork -selection CLIPBOARD - ''; - }; - }; }