diff --git a/options/custom/services/clipmenu.nix b/options/custom/services/clipmenu.nix
new file mode 100644
index 0000000..6967636
--- /dev/null
+++ b/options/custom/services/clipmenu.nix
@@ -0,0 +1,21 @@
+{
+  config,
+  lib,
+  ...
+}:
+with lib; let
+  cfg = config.custom.services.clipmenu;
+in {
+  options.custom.services.clipmenu = {
+    enable = mkOption {default = false;};
+  };
+
+  config = mkIf cfg.enable {
+    home-manager.sharedModules = [
+      {
+        # https://github.com/cdown/clipmenu
+        services.clipmenu.enable = true;
+      }
+    ];
+  };
+}
diff --git a/options/custom/services/default.nix b/options/custom/services/default.nix
index 16e90e9..fbda214 100644
--- a/options/custom/services/default.nix
+++ b/options/custom/services/default.nix
@@ -34,6 +34,7 @@ with lib; {
       #// blueman-applet.enable = true;
       #// clipcat.enable = true;
       #// cliphist.enable = true;
+      #// clipmenu.enable = true;
       easyeffects.enable = true;
       gammastep.enable = true;
       gnome-keyring.enable = true;