From 0f69accc2a8bf397ec1dbb3de19e1458bd3e0705 Mon Sep 17 00:00:00 2001 From: khaneliman Date: Sun, 31 Aug 2025 16:54:40 +0000 Subject: [PATCH] deploy: f27974d3b4aa0af533539ce626622c7b6b53c3f5 --- options.xhtml | 119 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 119 insertions(+) diff --git a/options.xhtml b/options.xhtml index 406d28a87..69882a89e 100644 --- a/options.xhtml +++ b/options.xhtml @@ -102217,6 +102217,125 @@ TOML value

+
+ + services.shpool.enable + + +
+
+

Whether to enable shpool.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/shpool.nix> + +
+
+
+ + services.shpool.package + + +
+
+

The shpool package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.shpool

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/shpool.nix> + +
+
+
+ + services.shpool.settings + + +
+
+

Configuration to use for shpool. See +https://github.com/shell-pool/shpool/blob/master/CONFIG.md +for available options.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  keybinding = [
+    {
+      action = "detach";
+      binding = "Ctrl-a d";
+    }
+  ];
+  motd = "never";
+  prompt_prefix = "[$SHPOOL_SESSION_NAME]";
+  session_restore_mode = {
+    lines = 1000;
+  };
+}
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/services/shpool.nix> + +
+
+
+ + services.shpool.systemd + + +
+
+

Whether to enable systemd service and socket for shpool.

+ +

Type: +boolean

+ +

Default: +true

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/services/shpool.nix> + +
+
services.signaturepdf.enable