diff --git a/options.xhtml b/options.xhtml index e64efdded..3c38a6d8a 100644 --- a/options.xhtml +++ b/options.xhtml @@ -19601,6 +19601,89 @@ package
+programs.earthly.enable
+
+
+Whether to enable earthly.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/earthly.nix>
+
+ |
programs.earthly.package
+
+
+The earthly package to use.
+ +Type: +package
+ +Default:
+pkgs.earthly
Declared by:
+
+
+<home-manager/modules/programs/earthly.nix>
+
+ |
programs.earthly.settings
+
+
+Configuration written to ~/.earthly/config.yml file. +See https://docs.earthly.dev/docs/earthly-config for supported values.
+ +Type: +YAML value
+ +Default:
+{ }
Example:
global = {
+ disable_analytics = true;
+ disable_log_sharing = true;
+};
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/earthly.nix>
+
+ |
programs.eclipse.enable