diff --git a/options.xhtml b/options.xhtml index 10dfcdab1..f3abccb90 100644 --- a/options.xhtml +++ b/options.xhtml @@ -37710,6 +37710,96 @@ package
+programs.poetry.enable
+
+
+Whether to enable poetry.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/poetry.nix>
+
+ |
programs.poetry.package
+
+
+The poetry package to use. May be used to install custom poetry plugins.
+ +Type: +package
+ +Default:
+pkgs.poetry
Example:
+pkgs.poetry.withPlugins (ps: with ps; [ poetry-plugin-up ])
Declared by:
+
+
+<home-manager/modules/programs/poetry.nix>
+
+ |
programs.poetry.settings
+
+
+Configuration written to
+$XDG_CONFIG_HOME/pypoetry/config.toml
on Linux or
+$HOME/Library/Application Support/pypoetry/config.toml
on Darwin.
+See
+https://python-poetry.org/docs/configuration/
+for more information.
Type: +TOML value
+ +Default:
+{ }
Example:
{
+ virtualenvs.create = true;
+ virtualenvs.in-project = true;
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/poetry.nix>
+
+ |
programs.powerline-go.enable