diff --git a/options.xhtml b/options.xhtml index 1e4fb0d0f..f77e587a1 100644 --- a/options.xhtml +++ b/options.xhtml @@ -16148,6 +16148,124 @@ attribute set of (boolean or floating point number or signed integer or string)< +
+ + programs.bun.enable + + +
+
+

Whether to enable Bun JavaScript runtime.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/bun.nix> + +
+
+
+ + programs.bun.enableGitIntegration + + +
+
+

Whether to enable Git integration.

+ +

Type: +boolean

+ +

Default: +true

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/bun.nix> + +
+
+
+ + programs.bun.package + + +
+
+

The bun package to use.

+ +

Type: +package

+ +

Default: +pkgs.bun

+ +

Declared by:

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

Configuration written to +$XDG_CONFIG_HOME/.bunfig.toml.

See https://bun.sh/docs/runtime/bunfig +for the full list of options.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  smol = true;
+  telemetry = false;
+  test = {
+    coverage = true;
+    coverageThreshold = 0.9;
+  };
+  install.lockfile = {
+    print = "yarn";
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/bun.nix> + +
+
programs.carapace.enable