From ed6c698372e04dda95ef09c2fe767d7c9b8069c5 Mon Sep 17 00:00:00 2001
From: teto
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