From 5ce838cb1d18234f453d41937b905822b28b9b88 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Sun, 3 Nov 2024 11:00:29 -0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(cb):=20Install=20Clipboard=20&?= =?UTF-8?q?=20remove=20copyq?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/services/clipboard.nix | 10 ++++++++++ home/services/default.nix | 1 + home/xorg/xsession.nix | 1 - 3 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 home/services/clipboard.nix diff --git a/home/services/clipboard.nix b/home/services/clipboard.nix new file mode 100644 index 0000000..f114539 --- /dev/null +++ b/home/services/clipboard.nix @@ -0,0 +1,10 @@ +{ pkgs, ... }: +{ + home.packages = with pkgs; [ + clipboard-jh + ]; + + home.sessionVariables = { + CLIPBOARD_THEME = "ansi"; + }; +} diff --git a/home/services/default.nix b/home/services/default.nix index 22bd2ff..25e0baf 100644 --- a/home/services/default.nix +++ b/home/services/default.nix @@ -1,6 +1,7 @@ { ... }: { imports = [ + ./clipboard.nix ./syncthing.nix ]; } diff --git a/home/xorg/xsession.nix b/home/xorg/xsession.nix index 2f4dbc1..fbbbf74 100644 --- a/home/xorg/xsession.nix +++ b/home/xorg/xsession.nix @@ -11,7 +11,6 @@ '' sudo mount -a "$HOME/.config/xrandr/desktop.sh" - copyq & mpd & pidgin & '';