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: Whether to enable bacon, a background rust code checker. Type:
+boolean Default:
+ Example:
+ Declared by: Bacon configuration.
+For available settings see https://dystroy.org/bacon/#global-preferences. Type:
+TOML value Example: Declared by: Whether to enable GNU Bourne-Again SHell. Type:
boolean Default:
Example:
""
<home-manager/modules/programs/autorandr.nix>
+
programs.bacon.enable
false
true
+<home-manager/modules/programs/bacon.nix>
+
programs.bacon.settings
{
+ jobs = {
+ default = {
+ command = [
+ "cargo"
+ "build"
+ "--all-features"
+ "--color"
+ "always"
+ ];
+ need_stdout = true;
+ };
+ };
+}
+
+<home-manager/modules/programs/bacon.nix>
programs.bash.enable
false