From ed6c698372e04dda95ef09c2fe767d7c9b8069c5 Mon Sep 17 00:00:00 2001 From: teto Date: Thu, 28 May 2026 11:55:43 +0000 Subject: [PATCH] deploy: 61e2c9659324181e0f0ed911958c536333b1d4f6 --- options.xhtml | 227 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 227 insertions(+) diff --git a/options.xhtml b/options.xhtml index 87b539d52..1bb446eba 100644 --- a/options.xhtml +++ b/options.xhtml @@ -132707,6 +132707,233 @@ package

+
+ + services.voxtype.enable + + +
+
+

Whether to enable Voxtype speech-to-text daemon.

+ +

Type: +boolean

+ +

Default:

false
+
+ +

Example:

true
+
+ +

Declared by:

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

The voxtype package to use.

+ +

Type: +package

+ +

Default:

pkgs.voxtype
+
+ +

Example:

pkgs.voxtype-vulkan
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/voxtype.nix> + +
+
+
+ + services.voxtype.environment + + +
+
+

Environment variables for the Voxtype user service.

+ +

Type: +attribute set of string

+ +

Default:

{ }
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/voxtype.nix> + +
+
+
+ + services.voxtype.extraArgs + + +
+
+

Extra command-line arguments passed to voxtype daemon.

+ +

Type: +list of string

+ +

Default:

[ ]
+
+ +

Example:

[
+  "--verbose"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/voxtype.nix> + +
+
+
+ + services.voxtype.loadModels + + +
+
+

Downloads the listed models with voxtype setup --download before starting +the daemon.

+ +

Type: +list of string

+ +

Default:

[ ]
+
+ +

Example:

[
+  "base.en"
+]
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/voxtype.nix> + +
+
+
+ + services.voxtype.settings + + +
+
+

Voxtype configuration written to $XDG_CONFIG_HOME/voxtype/config.toml.

+ +

Type: +TOML value

+ +

Default:

{ }
+
+ +

Example:

{
+  output = {
+    fallback_to_clipboard = true;
+    mode = "type";
+  };
+  whisper = {
+    language = "en";
+    model = "base.en";
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/voxtype.nix> + +
+
+
+ + services.voxtype.wayland.display + + +
+
+

Wayland display socket name to expose to the Voxtype user service.

+ +

Type: +null or string

+ +

Default:

null
+
+ +

Example:

"wayland-1"
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/voxtype.nix> + +
+
+
+ + services.voxtype.x11.display + + +
+
+

X11 display name to expose to the Voxtype user service.

+ +

Type: +null or string

+ +

Default:

null
+
+ +

Example:

":0"
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/voxtype.nix> + +
+
services.walker.enable