diff --git a/options.xhtml b/options.xhtml index 1eec0b861..224501269 100644 --- a/options.xhtml +++ b/options.xhtml @@ -60766,6 +60766,197 @@ string
+programs.vesktop.enable
+
+
+Whether to enable Vesktop, an alternate client for Discord with Vencord built-in.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/vesktop.nix>
+
+ |
programs.vesktop.package
+
+
+The vesktop package to use.
+ +Type: +package
+ +Default:
+pkgs.vesktop
Declared by:
+
+
+<home-manager/modules/programs/vesktop.nix>
+
+ |
programs.vesktop.settings
+
+
+Vesktop settings written to
+$XDG_CONFIG_HOME/vesktop/settings.json. See
+https://github.com/Vencord/Vesktop/blob/main/src/shared/settings.d.ts
+for available options.
Type: +JSON value
+ +Default:
+{ }
Example:
{
+ appBadge = false;
+ arRPC = true;
+ checkUpdates = false;
+ customTitleBar = false;
+ disableMinSize = true;
+ minimizeToTray = false;
+ tray = false;
+ splashBackground = "#000000";
+ splashColor = "#ffffff";
+ splashTheming = true;
+ staticTitle = true;
+ hardwareAcceleration = true;
+ discordBranch = "stable";
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/vesktop.nix>
+
+ |
programs.vesktop.vencord.settings
+
+
+Vencord settings written to
+$XDG_CONFIG_HOME/vesktop/settings/settings.json. See
+https://github.com/Vendicated/Vencord/blob/main/src/api/Settings.ts
+for available options.
Type: +JSON value
+ +Default:
+{ }
Example:
{
+ autoUpdate = false;
+ autoUpdateNotification = false;
+ notifyAboutUpdates = false;
+ useQuickCss = true;
+ disableMinSize = true;
+ plugins = {
+ MessageLogger = {
+ enabled = true;
+ ignoreSelf = true;
+ };
+ FakeNitro.enabled = true;
+ };
+}
+
+
+
+Declared by:
+
+
+<home-manager/modules/programs/vesktop.nix>
+
+ |
programs.vesktop.vencord.theme
+
+
+The theme to use for Vencord
+ +Type: +null or strings concatenated with ā\nā or absolute path
+ +Default:
+null
Declared by:
+
+
+<home-manager/modules/programs/vesktop.nix>
+
+ |
programs.vesktop.vencord.useSystem
+
+
+Whether to enable Vencord package from Nixpkgs.
+ +Type: +boolean
+ +Default:
+false
Example:
+true
Declared by:
+
+
+<home-manager/modules/programs/vesktop.nix>
+
+ |
programs.vifm.enable