From 363524d1a8ca0c5991d7aa96806b980160250e51 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Mon, 21 Apr 2025 17:27:08 +0000 Subject: [PATCH] deploy: 22b326b42bf42973d5e4fe1044591fb459e6aeac --- options.xhtml | 91 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) 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