diff --git a/options.xhtml b/options.xhtml index 94af14fd2..008348aea 100644 --- a/options.xhtml +++ b/options.xhtml @@ -37090,6 +37090,96 @@ string

+
+ + programs.kickoff.enable + + +
+
+

Whether to enable kickoff.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

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

The kickoff package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.kickoff

+ +

Declared by:

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

Configuration settings for kickoff. All the available options can be found +here: https://github.com/j0ru/kickoff/blob/main/assets/default_config.toml.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

''
+  padding = 100;
+  font_size = 32;
+  search.show_hidden_files = false;
+  history.decrease_interval = 48;
+  
+  keybinding = {
+    paste = [ "ctrl+v" ];
+    execute = [ "KP_Enter" "Return" ];
+    complete = [ "Tab" ];
+  };
+''
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/kickoff.nix> + +
+
programs.kitty.enable