feat: add vesktop module for desktop hosts by default

This commit is contained in:
Dmitriy Kholkin 2025-08-21 04:38:04 +03:00
parent 8371bd9f7d
commit be29f1c4fb
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,34 @@
{ config, lib, ... }:
let
inherit (lib) mkEnableOption mkIf;
cfg = config.ataraxia.programs.vesktop;
in
{
options.ataraxia.programs.vesktop = {
enable = mkEnableOption "Enable vesktop program";
};
config = mkIf cfg.enable {
programs.vesktop.enable = true;
programs.vesktop.settings = {
# appBadge = false;
# arRPC = true;
# checkUpdates = false;
# customTitleBar = false;
# disableMinSize = true;
minimizeToTray = true;
# tray = false;
# splashBackground = "#000000";
# splashColor = "#ffffff";
# splashTheming = true;
# staticTitle = true;
hardwareAcceleration = true;
discordBranch = "canary";
};
# programs.vesktop.vencord.settings = {};
# programs.vesktop.vencord.themes = {};
# programs.vesktop.vencord.useSystem = false;
persist.state.directories = [ ".config/vesktop" ];
};
}

View File

@ -92,6 +92,7 @@ in
ataraxia.programs.spotify.enable = mkDefault true;
ataraxia.programs.telegram.enable = mkDefault true;
ataraxia.programs.thunderbird.enable = mkDefault true;
ataraxia.programs.vesktop.enable = mkDefault true;
ataraxia.programs.vscode.enable = mkDefault true;
ataraxia.programs.walker.enable = mkDefault true;
ataraxia.programs.zathura.enable = mkDefault true;