diff --git a/options.xhtml b/options.xhtml index 055b644e7..82bb5baf6 100644 --- a/options.xhtml +++ b/options.xhtml @@ -19569,6 +19569,91 @@ JSON value
+programs.chawan.enable
+
+
+Whether to enable chawan, A TUI web browser.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/chawan.nix>
+
+ |
programs.chawan.package
+
+
+The chawan package to use.
+ +Type: +null or package
+ +Default:
+pkgs.chawan
Declared by:
+
+
+<home-manager/modules/programs/chawan.nix>
+
+ |
programs.chawan.settings
+
+
+Configuration options for chawan.
See cha-config(5)
+ +Type: +TOML value
+ +Default:
+{ }
Example:
{
+ buffer = {
+ images = true;
+ autofocus = true;
+ };
+ pager."C-k" = "() => pager.load('https://duckduckgo.com/?=')";
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/chawan.nix>
+
+ |
programs.chromium.enable