Add vesktop

This commit is contained in:
ItsDrike 2024-06-20 15:37:46 +02:00
parent f726805e5c
commit d3a40dd759
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
4 changed files with 44 additions and 0 deletions

View file

@ -0,0 +1,34 @@
{
lib,
osConfig,
pkgs,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.vesktop;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [ vesktop ];
xdg.configFile = {
"vesktop/settings.json".text = builtins.toJSON {
discordBranch = "stable"; # consider "ptb"
firstLaunch = false;
arRPC = "on";
splashColor = "rgb(219, 222, 225)";
splashBackground = "rgb(49, 51, 56)";
checkUpdates = false;
staticTitle = true;
disableMinSize = true;
minimizeToTray = false;
tray = false;
appBadge = false;
};
"autostart/vesktop.desktop" = mkIf cfg.autoStart {
source = "${pkgs.vesktop}/share/applications/vesktop.desktop";
};
};
};
}