diff --git a/options.html b/options.html index d2891a213..124d0d3df 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.enableWhether to enable RTX. Runtime Executor (asdf Rust clone).
Type: boolean
Default: false
Example: true
Declared by:
+ <home-manager/modules/programs/rtx.nix>
+ |
programs.rtx.enableBashIntegrationWhether to enable Bash Integration.
Type: boolean
Default: true
Example: true
Declared by:
+ <home-manager/modules/programs/rtx.nix>
+ |
programs.rtx.enableFishIntegrationWhether to enable Fish Integration.
Type: boolean
Default: true
Example: true
Declared by:
+ <home-manager/modules/programs/rtx.nix>
+ |
programs.rtx.enableZshIntegrationWhether to enable Zsh Integration.
Type: boolean
Default: true
Example: true
Declared by:
+ <home-manager/modules/programs/rtx.nix>
+ |
programs.rtx.packageThe rtx package to use.
Type: package
Default: pkgs.rtx
Declared by:
+ <home-manager/modules/programs/rtx.nix>
+ |
programs.rtx.settingsSettings 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.enableWhether to enable SageMath, a mathematics software system.
Type: boolean
Default: false
Example: true
Declared by:
<home-manager/modules/programs/sagemath.nix>
|
programs.sagemath.packageThe SageMath package to use.
Type: package
Default: pkgs.sage
Declared by:
|