diff --git a/options.html b/options.html index 376275b56..16e597afb 100644 --- a/options.html +++ b/options.html @@ -3063,6 +3063,39 @@ strings concatenated with ā€œ\nā€

Default:

Default: ""

Declared by:

<home-manager/modules/programs/autorandr.nix> +
programs.awscli.enable

Whether to enable AWS CLI tool.

Type: +boolean

Default: +false

Example: +true

Declared by:

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

Package providing aws.

Type: +package

Default: +pkgs.awscli2

Declared by:

+<home-manager/modules/programs/awscli.nix> +
programs.awscli.credentials

Configuration written to $HOME/.aws/credentials.

For security reasons, never store cleartext passwords here. +We recommend that you use credential_process option to retrieve +the IAM credentials from your favorite password manager during runtime, +or use AWS IAM Identity Center to get short-term credentials.

See https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-authentication.html.

Type: +attribute set of attribute set of (INI atom (null, bool, int, float or string))

Default: +{ }

Example:

{
+  "default" = {
+    "credential_process" = "${pkgs.pass}/bin/pass show aws";
+  };
+};
+
+

Declared by:

+<home-manager/modules/programs/awscli.nix> +
programs.awscli.settings

Configuration written to $HOME/.aws/config.

Type: +attribute set of attribute set of (INI atom (null, bool, int, float or string))

Default: +{ }

Example:

{
+  "default" = {
+    region = "eu-west-3";
+    output = "json";
+  };
+};
+
+

Declared by:

+<home-manager/modules/programs/awscli.nix>
programs.bacon.enable

Whether to enable bacon, a background rust code checker.

Type: boolean

Default: false

Example: