diff --git a/options.xhtml b/options.xhtml index 066966710..dae47fdb5 100644 --- a/options.xhtml +++ b/options.xhtml @@ -30554,6 +30554,205 @@ JSON value
+programs.mise.enable
+
+
+Whether to enable mise.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/mise.nix>
+
+ |
programs.mise.enableBashIntegration
+
+
+Whether to enable Bash Integration.
+ +Type: +boolean
+ +Default:
+true
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/mise.nix>
+
+ |
programs.mise.enableFishIntegration
+
+
+Whether to enable Fish Integration.
+ +Type: +boolean
+ +Default:
+true
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/mise.nix>
+
+ |
programs.mise.enableZshIntegration
+
+
+Whether to enable Zsh Integration.
+ +Type: +boolean
+ +Default:
+true
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/mise.nix>
+
+ |
programs.mise.package
+
+
+The mise package to use.
+ +Type: +package
+ +Default:
+pkgs.mise
Declared by:
+
+
+<home-manager/modules/programs/mise.nix>
+
+ |
programs.mise.globalConfig
+
+
+Config written to $XDG_CONFIG_HOME/mise/config.toml
.
See https://mise.jdx.dev/configuration.html#global-config-config-mise-config-toml +for details on supported values.
+ +Type: +TOML value
+ +Default:
+{ }
Example:
tools = {
+ node = "lts";
+ python = ["3.10" "3.11"];
+};
+
+aliases = {
+ my_custom_node = "20";
+};
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/mise.nix>
+
+ |
programs.mise.settings
+
+
+Settings written to $XDG_CONFIG_HOME/mise/settings.toml
.
See https://mise.jdx.dev/configuration.html#settings-file-config-mise-settings-toml +for details on supported values.
+ +Type: +TOML value
+ +Default:
+{ }
Example:
verbose = false;
+experimental = false;
+disable_tools = ["node"];
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/mise.nix>
+
+ |
programs.mpv.enable
@@ -38708,176 +38907,6 @@ strings concatenated with “\n”
-programs.rtx.enable
-
-
-Whether to enable RTX. Runtime Executor (asdf Rust clone).
- -Type: -boolean
- -Default:
-false
Example:
-true
Declared by:
-
-
-<home-manager/modules/programs/rtx.nix>
-
- |
programs.rtx.enableBashIntegration
-
-
-Whether to enable Bash Integration.
- -Type: -boolean
- -Default:
-true
Example:
-true
Declared by:
-
-
-<home-manager/modules/programs/rtx.nix>
-
- |
programs.rtx.enableFishIntegration
-
-
-Whether to enable Fish Integration.
- -Type: -boolean
- -Default:
-true
Example:
-true
Declared by:
-
-
-<home-manager/modules/programs/rtx.nix>
-
- |
programs.rtx.enableZshIntegration
-
-
-Whether to enable Zsh Integration.
- -Type: -boolean
- -Default:
-true
Example:
-true
Declared by:
-
-
-<home-manager/modules/programs/rtx.nix>
-
- |
programs.rtx.package
-
-
-The rtx package to use.
- -Type: -package
- -Default:
-pkgs.rtx
Declared by:
-
-
-<home-manager/modules/programs/rtx.nix>
-
- |
programs.rtx.settings
-
-
-Settings written to $XDG_CONFIG_HOME/rtx/config.toml
.
See https://github.com/jdxcode/rtx#global-config-configrtxconfigtoml -for details on supported values.
Modifying the tools
section doesn’t make RTX install them.
-You have to manually run rtx install
to install the tools.
Type: -TOML value
- -Default:
-{ }
Example:
tools = {
- node = "lts";
- python = ["3.10" "3.11"];
-};
-
-settings = {
- verbose = false;
- experimental = false;
-};
-
-
-
-Declared by:
-
-
-<home-manager/modules/programs/rtx.nix>
-
- |
programs.ruff.enable