Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

programs.bacon.enable

Whether to enable bacon, a background rust code checker.

Type: boolean

Default:

false

Example:

true

Declared by:

programs.bacon.package

The bacon package to use.

Type: null or package

Default:

pkgs.bacon

Declared by:

programs.bacon.settings

Bacon configuration written to either Library/Application Support/org.dystroy.bacon/prefs.toml (darwin) or $XDG_CONFIG_HOME/bacon/prefs.toml. For available settings see https://dystroy.org/bacon/#global-preferences.

Type: TOML value

Default:

{ }

Example:

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

Declared by: