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
<home-manager/modules/programs/bacon.nix>