From d79415bb172c6aacfce46285591095a9e7468f96 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Thu, 8 May 2025 15:46:18 +0000 Subject: [PATCH] deploy: 3c59c5132b64e885faca381e713b579dcbddba75 --- options.xhtml | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) diff --git a/options.xhtml b/options.xhtml index 05316b96d..ad06e881c 100644 --- a/options.xhtml +++ b/options.xhtml @@ -64677,6 +64677,96 @@ attribute set of (boolean or floating point number or signed integer or absolute +
+ + programs.wayprompt.enable + + +
+
+

Whether to enable Wayprompt, a password-prompter for Wayland.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/wayprompt.nix> + +
+
+
+ + programs.wayprompt.package + + +
+
+

The wayprompt package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.wayprompt

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/wayprompt.nix> + +
+
+
+ + programs.wayprompt.settings + + +
+
+

Configuration for wayprompt written to +$XDG_CONFIG_HOME/wayprompt/config.ini. +See wayprompt(5) for a list of available options. +Note that colours can be either 6-hex-digit RGB or 8-hex-digit RGBA values.

+ +

Type: +attribute set of section of an INI file (attrs of INI atom (null, bool, int, float or string))

+ +

Default: +{ }

+ +

Example:

{
+  general = {
+    font-regular = "sans:size=14";
+    pin-square-amount = 32;
+  };
+  colours = {
+    background = "0xffffffaa";
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/wayprompt.nix> + +
+
programs.wezterm.enable