diff --git a/options.xhtml b/options.xhtml index 6750b70db..873bf8f15 100644 --- a/options.xhtml +++ b/options.xhtml @@ -39896,6 +39896,119 @@ list of package
+programs.jjui.enable
+
+
+Whether to enable jjui - A terminal user interface for jujutsu.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/jjui.nix>
+
+ |
programs.jjui.package
+
+
+The jjui package to use.
+ +Type: +null or package
+ +Default:
+pkgs.jjui
Declared by:
+
+
+<home-manager/modules/programs/jjui.nix>
+
+ |
programs.jjui.configDir
+
+
+The directory to contain jjui configuration files.
+ +Type: +string
+ +Default:
Darwin: "Library/Application Support/jjui"
+Linux: ${config.xdg.configHome}/jjui
+
+
+Example:
+${config.home.homeDirectory}/.jjui
Declared by:
+
+
+<home-manager/modules/programs/jjui.nix>
+
+ |
programs.jjui.settings
+
+
+Options to add to the config.toml file. See
+https://github.com/idursun/jjui/wiki/Configuration
+for options.
Type: +TOML value
+ +Default:
+{ }
Example:
{
+ revisions = {
+ revset = "";
+ template = "builtin_log_compact";
+ };
+}
+
+
+Declared by:
+
+
+<home-manager/modules/programs/jjui.nix>
+
+ |
programs.joplin-desktop.enable