diff --git a/options.xhtml b/options.xhtml index b97c20c83..9ed23faf2 100644 --- a/options.xhtml +++ b/options.xhtml @@ -56699,6 +56699,97 @@ positive integer, meaning >0

+
+ + programs.television.enable + + +
+
+

Whether to enable television.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The television package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.television

+ +

Declared by:

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

Configuration written to $XDG_CONFIG_HOME/television/config.toml. +See https://github.com/alexpasmantier/television/blob/main/.config/config.toml +for the full list of options.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  tick_rate = 50;
+  ui = {
+    use_nerd_font_icons = true;
+    ui_scale = 120;
+    show_preview_panel = false;
+  };
+  keybindings = {
+    quit = [ "esc" "ctrl-c" ];
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/television.nix> + +
+
programs.terminator.enable