diff --git a/options.xhtml b/options.xhtml index 0176d2e36..b59d155ae 100644 --- a/options.xhtml +++ b/options.xhtml @@ -55940,6 +55940,99 @@ YAML value
+programs.vinegar.enable
+
+
+Whether to enable Vinegar.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/vinegar.nix>
+
+ |
programs.vinegar.package
+
+
+The vinegar package to use.
+ +Type: +package
+ +Default:
+pkgs.vinegar
Declared by:
+
+
+<home-manager/modules/programs/vinegar.nix>
+
+ |
programs.vinegar.settings
+
+
+Configuration written to $XDG_CONFIG_HOME/vinegar/config.toml.
See https://vinegarhq.org/Configuration/ for more information.
+ +Type: +attribute set of (TOML value)
+ +Default:
+{ }
Example:
{
+ env = {
+ WINEFSYNC = "1";
+ };
+ studio = {
+ dxvk = false;
+ env = {
+ DXVK_HUD = "0";
+ MANGOHUD = "1";
+ };
+ fflags = {
+ DFIntTaskSchedulerTargetFps = 144;
+ };
+ renderer = "Vulkan";
+ };
+}
+
+
+Declared by:
+
+
+<home-manager/modules/programs/vinegar.nix>
+
+ |
programs.vscode.enable