diff --git a/options.xhtml b/options.xhtml index 224501269..6d2250ee7 100644 --- a/options.xhtml +++ b/options.xhtml @@ -60690,6 +60690,93 @@ boolean
+programs.uv.enable
+
+
+Whether to enable uv.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/uv.nix>
+
+ |
programs.uv.package
+
+
+The uv package to use.
+ +Type: +null or package
+ +Default:
+pkgs.uv
Declared by:
+
+
+<home-manager/modules/programs/uv.nix>
+
+ |
programs.uv.settings
+
+
+Configuration written to
+$XDG_CONFIG_HOME/uv/uv.toml.
+See https://docs.astral.sh/uv/configuration/files/
+and https://docs.astral.sh/uv/reference/settings/
+for more information.
Type: +TOML value
+ +Default:
+{ }
Example:
{
+ python-downloads = "never";
+ python-preference = "only-system";
+ pip.index-url = "https://test.pypi.org/simple";
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/uv.nix>
+
+ |
programs.vdirsyncer.enable