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"];