diff --git a/options.html b/options.html index d2891a21..124d0d3d 100644 --- a/options.html +++ b/options.html @@ -5502,6 +5502,35 @@ in { https://github.com/rakshasa/rtorrent/wiki/Config-Guide for explanation about possible values.
Type: strings concatenated with "\n"
Default: ""
Declared by:
<home-manager/modules/programs/rtorrent.nix>
+ |
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.sagemath.enable
Whether to enable SageMath, a mathematics software system.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/sagemath.nix>
|
programs.sagemath.package
The SageMath package to use.
Type: package
Default: pkgs.sage
Declared by:
|