From 3e13a15cc418fd891d8474a6a563a1a5603311f6 Mon Sep 17 00:00:00 2001 From: rycee Date: Sat, 30 Sep 2023 08:08:43 +0000 Subject: [PATCH] deploy: f1b7775d2393f41acd2b46acaccf0ab6431dea8b --- options.html | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) 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: