diff --git a/options.xhtml b/options.xhtml index bc53b73b8..e7c5d3d55 100644 --- a/options.xhtml +++ b/options.xhtml @@ -23093,6 +23093,94 @@ attribute set of section of an INI file (attrs of INI atom (null, bool, int, flo +
+ + programs.docker-cli.enable + + +
+
+

Whether to enable management of docker client config.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/docker-cli.nix> + +
+
+
+ + programs.docker-cli.configPath + + +
+
+

Relative path to the user’s home directory where the Docker CLI settings should be stored.

+ +

Type: +string

+ +

Default: +".docker/config.json"

+ +

Declared by:

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

Available configuration options for the Docker CLI see: +<https://docs.docker.com/reference/cli/docker/#docker-cli-configuration-file-configjson-properties

+ +

Type: +JSON value

+ +

Default: +{ }

+ +

Example:

''
+  {
+    "proxies" = {
+      "default" = {
+        "httpProxy" = "http://proxy.example.org:3128";
+        "httpsProxy" = "http://proxy.example.org:3128";
+        "noProxy" = "localhost";
+      };
+    };
+''
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/docker-cli.nix> + +
+
programs.earthly.enable