diff --git a/options.xhtml b/options.xhtml index 75e62b98c..6ae997dc8 100644 --- a/options.xhtml +++ b/options.xhtml @@ -68901,6 +68901,99 @@ TOML value

+
+ + programs.twitch-tui.enable + + +
+
+

Whether to enable twitch-tui.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The twitch-tui package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.twitch-tui

+ +

Declared by:

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

Configuration settings for twitch-tui. All the available options +can be found here: https://github.com/Xithrius/twitch-tui/blob/main/default-config.toml

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  terminal = {
+    delay = 30;
+    first_state = "dashboard";
+    log_file = "";
+    log_level = "info";
+    maximum_messages = 500;
+  };
+  twitch = {
+    channel = "";
+    server = "wss://eventsub.wss.twitch.tv/ws";
+    token = "";
+    username = "";
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/twitch-tui.nix> + +
+
programs.urxvt.enable