This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/modules/programs/nixcord/default.nix
2026-04-09 13:11:10 +07:00

47 lines
No EOL
1.3 KiB
Nix

{ lib, libs, osconfig, ... }:
{
programs.nixcord = lib.mkIf osconfig.device.programs.nixcord.enable {
enable = true;
discord = {
enable = true;
vencord.enable = true;
};
quickCss = builtins.readFile (libs.root "/assets/discord/style.css");
config = {
useQuickCss = true;
enableReactDevtools = true;
themeLinks = [ "https://catppuccin.github.io/discord/dist/catppuccin-mocha-blue.theme.css" ];
plugins = {
BlurNSFW.enable = true;
volumeBooster.enable = true;
ClearURLs.enable = true;
copyEmojiMarkdown.enable = true;
youtubeAdblock.enable = true;
experiments.enable = true;
fixCodeblockGap.enable = true;
fixImagesQuality.enable = true;
fixSpotifyEmbeds.enable = true;
fixYoutubeEmbeds.enable = true;
gameActivityToggle.enable = true;
imageZoom.enable = true;
memberCount.enable = true;
mentionAvatars.enable = true;
noDevtoolsWarning.enable = true;
noF1.enable = true;
openInApp.enable = true;
voiceDownload.enable = true;
validUser.enable = true;
translate.enable = true;
whoReacted.enable = true;
fakeNitro = {
enable = true;
enableEmojiBypass = false;
};
};
};
};
}