diff --git a/options.xhtml b/options.xhtml index 6153866db..b87a66ff4 100644 --- a/options.xhtml +++ b/options.xhtml @@ -18246,6 +18246,123 @@ null or string
+programs.amber.enable
+
+
+Whether to enable amber.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/amber.nix>
+
+ |
programs.amber.package
+
+
+The amber package to use.
+ +Type: +null or package
+ +Default:
+pkgs.amber
Declared by:
+
+
+<home-manager/modules/programs/amber.nix>
+
+ |
programs.amber.ambrSettings
+
+
+Configuration settings for amber’s ambr tool. All the available options can be found here: +https://github.com/dalance/amber?tab=readme-ov-file#configurable-value.
+ +Type: +TOML value
+ +Default:
+{ }
Example:
{
+ interactive = false;
+ regex = true;
+ row = true;
+ statistics = true;
+}
+
+
+Declared by:
+
+
+<home-manager/modules/programs/amber.nix>
+
+ |
programs.amber.ambsSettings
+
+
+Configuration settings for amber’s ambs tool. All the available options can be found here: +https://github.com/dalance/amber?tab=readme-ov-file#configurable-value.
+ +Type: +TOML value
+ +Default:
+{ }
Example:
{
+ binary = true;
+ column = true;
+ recursive = false;
+ skipped = true;
+}
+
+
+Declared by:
+
+
+<home-manager/modules/programs/amber.nix>
+
+ |
programs.animdl.enable