diff --git a/options.html b/options.html index 6e773f4e6..a704091fc 100644 --- a/options.html +++ b/options.html @@ -3063,6 +3063,29 @@ strings concatenated with ā€œ\nā€

Default:

Default: ""

Declared by:

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

Whether to enable bacon, a background rust code checker.

Type: +boolean

Default: +false

Example: +true

Declared by:

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

Bacon configuration. +For available settings see https://dystroy.org/bacon/#global-preferences.

Type: +TOML value

Example:

{
+  jobs = {
+    default = {
+      command = [
+        "cargo"
+        "build"
+        "--all-features"
+        "--color"
+        "always"
+      ];
+      need_stdout = true;
+    };
+  };
+}
+

Declared by:

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

Whether to enable GNU Bourne-Again SHell.

Type: boolean

Default: false

Example: