mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 05:29:42 +00:00
Compare commits
1 commit
4f7c9e8a71
...
d3a40dd759
Author | SHA1 | Date | |
---|---|---|---|
ItsDrike | d3a40dd759 |
|
@ -1,5 +1,6 @@
|
||||||
_: {
|
_: {
|
||||||
imports = [
|
imports = [
|
||||||
./spotify
|
./spotify
|
||||||
|
./vesktop
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
34
home/programs/graphical/apps/vesktop/default.nix
Normal file
34
home/programs/graphical/apps/vesktop/default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -62,6 +62,7 @@
|
||||||
".mozilla"
|
".mozilla"
|
||||||
".mullvad"
|
".mullvad"
|
||||||
".config/chromium"
|
".config/chromium"
|
||||||
|
".config/vesktop"
|
||||||
".local/share/gnupg"
|
".local/share/gnupg"
|
||||||
".local/share/zoxide"
|
".local/share/zoxide"
|
||||||
".local/share/wakatime"
|
".local/share/wakatime"
|
||||||
|
@ -137,6 +138,10 @@
|
||||||
};
|
};
|
||||||
spotify.enable = true;
|
spotify.enable = true;
|
||||||
stremio.enable = true;
|
stremio.enable = true;
|
||||||
|
vesktop = {
|
||||||
|
enable = true;
|
||||||
|
autoStart = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -28,5 +28,9 @@ in
|
||||||
|
|
||||||
spotify.enable = mkEnableOption "Spotify";
|
spotify.enable = mkEnableOption "Spotify";
|
||||||
stremio.enable = mkEnableOption "Stremio free media center";
|
stremio.enable = mkEnableOption "Stremio free media center";
|
||||||
|
vesktop = {
|
||||||
|
enable = mkEnableOption "Vesktop (An alternate client for Discord with Vencord built-in)";
|
||||||
|
autoStart = mkEnableOption "Auto-Start for Vesktop";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue