mirror of
https://github.com/Swarsel/.dotfiles.git
synced 2025-12-06 00:57:22 +01:00
feat[client]: add vesktop
This commit is contained in:
parent
f0b7b7ad7f
commit
f02f26636e
4 changed files with 171 additions and 8 deletions
|
|
@ -79,7 +79,7 @@
|
|||
xournalpp
|
||||
# obsidian
|
||||
# spotify
|
||||
vesktop # discord client
|
||||
# vesktop # discord client
|
||||
# nextcloud-client # enables a systemd service that I do not want
|
||||
spotify-player
|
||||
element-desktop
|
||||
|
|
|
|||
79
modules/home/common/vesktop.nix
Normal file
79
modules/home/common/vesktop.nix
Normal file
|
|
@ -0,0 +1,79 @@
|
|||
{ lib, config, ... }:
|
||||
let
|
||||
moduleName = "vesktop";
|
||||
in
|
||||
{
|
||||
options.swarselmodules.${moduleName} = lib.mkEnableOption "enable ${moduleName} and settings";
|
||||
config = lib.mkIf config.swarselmodules.${moduleName} {
|
||||
programs.${moduleName} = {
|
||||
enable = true;
|
||||
settings = {
|
||||
appBadge = false;
|
||||
arRPC = false;
|
||||
checkUpdates = false;
|
||||
customTitleBar = false;
|
||||
disableMinSize = true;
|
||||
minimizeToTray = true;
|
||||
tray = true;
|
||||
staticTitle = true;
|
||||
hardwareAcceleration = true;
|
||||
discordBranch = "stable";
|
||||
};
|
||||
vencord = {
|
||||
useSystem = true;
|
||||
settings = {
|
||||
autoUpdate = false;
|
||||
autoUpdateNotification = false;
|
||||
enableReactDevtools = false;
|
||||
frameless = false;
|
||||
transparent = false;
|
||||
winCtrlQ = false;
|
||||
notifyAboutUpdates = false;
|
||||
useQuickCss = true;
|
||||
disableMinSize = true;
|
||||
winNativeTitleBar = false;
|
||||
plugins = {
|
||||
MessageLogger = {
|
||||
enabled = true;
|
||||
ignoreSelf = true;
|
||||
};
|
||||
ChatInputButtonAPI = {
|
||||
enabled = false;
|
||||
};
|
||||
CommandsAPI = {
|
||||
enabled = true;
|
||||
};
|
||||
MemberListDecoratorsAPI = {
|
||||
enabled = false;
|
||||
};
|
||||
MessageAccessoriesAPI = {
|
||||
enabled = true;
|
||||
};
|
||||
MessageDecorationsAPI = {
|
||||
enabled = false;
|
||||
};
|
||||
MessageEventsAPI = {
|
||||
enabled = false;
|
||||
};
|
||||
MessagePopoverAPI = {
|
||||
enabled = false;
|
||||
};
|
||||
MessageUpdaterAPI = {
|
||||
enabled = false;
|
||||
};
|
||||
ServerListAPI = {
|
||||
enabled = false;
|
||||
};
|
||||
UserSettingsAPI = {
|
||||
enabled = true;
|
||||
};
|
||||
FakeNitro = {
|
||||
enabled = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue