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