big refactor
This commit is contained in:
commit
76d68230f6
81 changed files with 3065 additions and 0 deletions
44
modules/programs/nixcord/default.nix
Normal file
44
modules/programs/nixcord/default.nix
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
{ lib, osconfig, ... }:
|
||||
{
|
||||
programs.nixcord = lib.mkIf osconfig.device.programs.nixcord.enable {
|
||||
enable = true;
|
||||
discord = {
|
||||
enable = true;
|
||||
vencord.enable = true;
|
||||
};
|
||||
|
||||
config = {
|
||||
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;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in a new issue