From 4ad24e3970605b40b907683c40a367491df0fdc6 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sat, 22 Feb 2025 15:41:07 +0000 Subject: [PATCH] deploy: a51e94e51c7df10f078a2530ce125df7410b4f33 --- options.xhtml | 174 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 174 insertions(+) diff --git a/options.xhtml b/options.xhtml index 91b3a2d3c..a31641b63 100644 --- a/options.xhtml +++ b/options.xhtml @@ -64910,6 +64910,180 @@ null or string

+
+ + services.clipse.enable + + +
+
+

Whether to enable Enable clipse clipboard manager.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/clipse.nix> + +
+
+
+ + services.clipse.package + + +
+
+

The clipse package to use.

+ +

Type: +package

+ +

Default: +pkgs.clipse

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/clipse.nix> + +
+
+
+ + services.clipse.allowDuplicates + + +
+
+

Allow duplicates

+ +

Type: +boolean

+ +

Default: +false

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/clipse.nix> + +
+
+
+ + services.clipse.historySize + + +
+
+

Number of history lines to keep.

+ +

Type: +signed integer

+ +

Default: +100

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/clipse.nix> + +
+
+
+ + services.clipse.systemdTarget + + +
+
+

The systemd target that will automatically start the clipse service.

When setting this value to "sway-session.target", +make sure to also enable wayland.windowManager.sway.systemd.enable, +otherwise the service may never be started.

+ +

Type: +string

+ +

Default: +"graphical-session.target"

+ +

Example: +"sway-session.target"

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/clipse.nix> + +
+
+
+ + services.clipse.theme + + +
+
+

Configuration written to +$XDG_CONFIG_HOME/clipse/custom_theme.json.

+ +

Type: +JSON value

+ +

Default:

{
+  useCustomTheme = false;
+}
+
+ +

Example:

{
+  useCustomTheme = true;
+  DimmedDesc = "#ffffff";
+  DimmedTitle = "#ffffff";
+  FilteredMatch = "#ffffff";
+  NormalDesc = "#ffffff";
+  NormalTitle = "#ffffff";
+  SelectedDesc = "#ffffff";
+  SelectedTitle = "#ffffff";
+  SelectedBorder = "#ffffff";
+  SelectedDescBorder = "#ffffff";
+  TitleFore = "#ffffff";
+  Titleback = "#434C5E";
+  StatusMsg = "#ffffff";
+  PinIndicatorColor = "#ff0000";
+};
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/clipse.nix> + +
+
services.comodoro.enable