From 0f69accc2a8bf397ec1dbb3de19e1458bd3e0705 Mon Sep 17 00:00:00 2001
From: khaneliman
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