From 9e2f19783b2559a75329bf1d85863c9a5287da05 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sun, 13 Jul 2025 22:51:54 +0000 Subject: [PATCH] deploy: 7969ed8baac8363b32775c5f55e132668bab8123 --- options.xhtml | 96 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) diff --git a/options.xhtml b/options.xhtml index acb7e35b4..6fd0b8d36 100644 --- a/options.xhtml +++ b/options.xhtml @@ -34394,6 +34394,102 @@ package

+
+ + programs.gurk-rs.enable + + +
+
+

Whether to enable gurk-rs.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The gurk-rs package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.gurk-rs

+ +

Declared by:

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

Configuration written to $XDG_CONFIG_HOME/.config/gurk/gurk.toml +or Library/Application Support/gurk/gurk.toml. Options are +declared at https://github.com/boxdot/gurk-rs/blob/main/src/config.rs. +Note that data_path and signal_db_path should be set.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  data_path = "/home/USERNAME/.local/share/gurk/gurk.data.json";
+  signal_db_path = "/home/USERNAME/.local/share/gurk/signal-db";
+  first_name_only = false;
+  show_receipts = true;
+  notifications = true;
+  bell = true;
+  colored_messages = false;
+  default_keybindings = true;
+  user = {
+    name = "MYNAME";
+    phone_number = "MYNUMBER";
+  };
+  keybindings =  { };
+}
+
+
+ +

Declared by:

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