46 lines
1.3 KiB
Nix
46 lines
1.3 KiB
Nix
|
|
{
|
|
programs.nixcord = {
|
|
enable = true; # Enable Nixcord (It also installs Discord)
|
|
discord = {
|
|
vencord.enable = false; # Use Vencord (default)
|
|
equicord.enable = true; # Or use Equicord instead (cannot enable both)
|
|
};
|
|
vesktop.enable = false; # Vesktop
|
|
equibop = {
|
|
enable = true;
|
|
settings = {
|
|
plugins = {
|
|
"WebRichPresence (arRPC)".enabled = true;
|
|
};
|
|
};
|
|
}; # Equibop
|
|
dorion.enable = false; # Dorion
|
|
quickCss = "some CSS"; # quickCSS file
|
|
config = {
|
|
# useQuickCss = true; # use out quickCSS
|
|
# themeLinks = [ # or use an online theme
|
|
# "https://raw.githubusercontent.com/link/to/some/theme.css"
|
|
# ];
|
|
frameless = true; # Set some Vencord/Equicord options
|
|
};
|
|
dorion = {
|
|
theme = "dark";
|
|
zoom = "1.1";
|
|
blur = "acrylic"; # "none", "blur", or "acrylic"
|
|
sysTray = true;
|
|
openOnStartup = true;
|
|
autoClearCache = true;
|
|
disableHardwareAccel = false;
|
|
rpcServer = true;
|
|
rpcProcessScanner = true;
|
|
pushToTalk = true;
|
|
pushToTalkKeys = ["RControl"];
|
|
desktopNotifications = true;
|
|
unreadBadge = true;
|
|
};
|
|
extraConfig = {
|
|
};
|
|
};
|
|
# ...
|
|
} |