diff --git a/options.xhtml b/options.xhtml index 7d876ba43..c15f8ac6b 100644 --- a/options.xhtml +++ b/options.xhtml @@ -30856,6 +30856,96 @@ package

+
+ + programs.halloy.enable + + +
+
+

Whether to enable halloy.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The halloy package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.halloy

+ +

Declared by:

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

Configuration settings for halloy. All available options can be +found here: https://halloy.chat/configuration/index.html.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  "buffer.channel.topic" = {
+    enabled = true;
+  };
+  "servers.liberachat" = {
+    channels = [
+      "#halloy"
+    ];
+    nickname = "halloy-user";
+    server = "irc.libera.chat";
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/halloy.nix> + +
+
programs.havoc.enable