From 161ae2fca5e7c44b032b3c5621e6ae5860ac9f55 Mon Sep 17 00:00:00 2001 From: Myned Date: Sun, 9 Feb 2025 18:48:45 -0600 Subject: [PATCH] clipsync: rename to clipnotify Signed-off-by: Myned --- options/custom/services/clipnotify.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/options/custom/services/clipnotify.nix b/options/custom/services/clipnotify.nix index 6318220..6ccc1f1 100644 --- a/options/custom/services/clipnotify.nix +++ b/options/custom/services/clipnotify.nix @@ -5,20 +5,20 @@ ... }: with lib; let - cfg = config.custom.services.clipsync; + cfg = config.custom.services.clipnotify; clipnotify = getExe pkgs.clipnotify; wl-copy = getExe' pkgs.wl-clipboard "wl-copy"; wl-paste = getExe' pkgs.wl-clipboard "wl-paste"; xclip = getExe pkgs.xclip; in { - options.custom.services.clipsync = { + options.custom.services.clipnotify = { enable = mkOption {default = false;}; }; config = mkIf cfg.enable { # https://github.com/cdown/clipnotify - systemd.user.services.clipsync = { + systemd.user.services.clipnotify = { enable = true; wantedBy = ["graphical-session.target"];