This commit is contained in:
rycee 2024-04-09 18:48:57 +00:00
parent 5b755f985f
commit 5104926f43
1 changed files with 118 additions and 0 deletions

View File

@ -16148,6 +16148,124 @@ attribute set of (boolean or floating point number or signed integer or string)<
</td></tr>
</table>
</dd>
<dt>
<span class="term">
<a id="opt-programs.bun.enable"></a><a class="term" href="options.xhtml#opt-programs.bun.enable"><code class="option">programs.bun.enable</code>
</a>
</span>
</dt>
<dd>
<p>Whether to enable Bun JavaScript runtime.</p>
<p><span class="emphasis"><em>Type:</em></span>
boolean</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">false</code></p>
<p><span class="emphasis"><em>Example:</em></span>
<code class="literal">true</code></p>
<p><span class="emphasis"><em>Declared by:</em></span></p>
<table border="0" summary="Simple list" class="simplelist">
<tr><td>
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/bun.nix" target="_top">
&lt;home-manager/modules/programs/bun.nix&gt;
</a></code>
</td></tr>
</table>
</dd>
<dt>
<span class="term">
<a id="opt-programs.bun.enableGitIntegration"></a><a class="term" href="options.xhtml#opt-programs.bun.enableGitIntegration"><code class="option">programs.bun.enableGitIntegration</code>
</a>
</span>
</dt>
<dd>
<p>Whether to enable Git integration.</p>
<p><span class="emphasis"><em>Type:</em></span>
boolean</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">true</code></p>
<p><span class="emphasis"><em>Example:</em></span>
<code class="literal">true</code></p>
<p><span class="emphasis"><em>Declared by:</em></span></p>
<table border="0" summary="Simple list" class="simplelist">
<tr><td>
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/bun.nix" target="_top">
&lt;home-manager/modules/programs/bun.nix&gt;
</a></code>
</td></tr>
</table>
</dd>
<dt>
<span class="term">
<a id="opt-programs.bun.package"></a><a class="term" href="options.xhtml#opt-programs.bun.package"><code class="option">programs.bun.package</code>
</a>
</span>
</dt>
<dd>
<p>The bun package to use.</p>
<p><span class="emphasis"><em>Type:</em></span>
package</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">pkgs.bun</code></p>
<p><span class="emphasis"><em>Declared by:</em></span></p>
<table border="0" summary="Simple list" class="simplelist">
<tr><td>
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/bun.nix" target="_top">
&lt;home-manager/modules/programs/bun.nix&gt;
</a></code>
</td></tr>
</table>
</dd>
<dt>
<span class="term">
<a id="opt-programs.bun.settings"></a><a class="term" href="options.xhtml#opt-programs.bun.settings"><code class="option">programs.bun.settings</code>
</a>
</span>
</dt>
<dd>
<p>Configuration written to
<code class="filename">$XDG_CONFIG_HOME/.bunfig.toml</code>.</p><p>See <a class="link" href="https://bun.sh/docs/runtime/bunfig" target="_top">https://bun.sh/docs/runtime/bunfig</a>
for the full list of options.</p>
<p><span class="emphasis"><em>Type:</em></span>
TOML value</p>
<p><span class="emphasis"><em>Default:</em></span>
<code class="literal">{ }</code></p>
<p><span class="emphasis"><em>Example:</em></span></p><pre><code class="programlisting">{
smol = true;
telemetry = false;
test = {
coverage = true;
coverageThreshold = 0.9;
};
install.lockfile = {
print = &quot;yarn&quot;;
};
}
</code></pre>
<p><span class="emphasis"><em>Declared by:</em></span></p>
<table border="0" summary="Simple list" class="simplelist">
<tr><td>
<code class="filename"><a class="filename" href="https://github.com/nix-community/home-manager/blob/master/modules/programs/bun.nix" target="_top">
&lt;home-manager/modules/programs/bun.nix&gt;
</a></code>
</td></tr>
</table>
</dd>
<dt>
<span class="term">
<a id="opt-programs.carapace.enable"></a><a class="term" href="options.xhtml#opt-programs.carapace.enable"><code class="option">programs.carapace.enable</code>