diff --git a/options.html b/options.html index 6929ae359..e2c818d04 100644 --- a/options.html +++ b/options.html @@ -8378,6 +8378,46 @@ boolean

Default: package

Default: pkgs.opam

Declared by:

<home-manager/modules/programs/opam.nix> +
programs.openstackclient.enable

Whether to enable OpenStack command-line client.

Type: +boolean

Default: +false

Example: +true

Declared by:

+<home-manager/modules/programs/openstackclient.nix> +
programs.openstackclient.package

The openstackclient package to use.

Type: +package

Default: +pkgs.openstackclient

Declared by:

+<home-manager/modules/programs/openstackclient.nix> +
programs.openstackclient.clouds

Configuration needed to connect to one or more clouds.

Do not include passwords here as they will be publicly readable in the Nix store. +Configuration written to $XDG_CONFIG_HOME/openstack/clouds.yaml. +See https://docs.openstack.org/python-openstackclient/latest/configuration/index.html#clouds-yaml.

Type: +YAML value

Default: +{ }

Example:

{
+  my-infra = {
+    cloud = "example-cloud";
+    auth = {
+      project_id = "0123456789abcdef0123456789abcdef";
+      username = "openstack";
+    };
+    region_name = "XXX";
+    interface = "internal";
+  };
+}
+
+

Declared by:

+<home-manager/modules/programs/openstackclient.nix> +
programs.openstackclient.publicClouds

Public information about clouds.

Configuration written to $XDG_CONFIG_HOME/openstack/clouds-public.yaml. +See https://docs.openstack.org/python-openstackclient/latest/configuration/index.html#clouds-public-yaml.

Type: +YAML value

Default: +{ }

Example:

{
+  example-cloud = {
+    auth = {
+      auth_url = "https://identity.cloud.example.com/v2.0";
+    };
+  };
+};
+
+

Declared by:

+<home-manager/modules/programs/openstackclient.nix>
programs.pandoc.enable

Whether to enable pandoc.

Type: boolean

Default: false

Example: