mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-10 04:40:05 +00:00
✨ (homes/jo) Add Nixcord configuration
This commit is contained in:
parent
3e6f386f7f
commit
afda908416
5 changed files with 152 additions and 5 deletions
53
homes/x86_64-linux/jo/apps/discord/default.nix
Normal file
53
homes/x86_64-linux/jo/apps/discord/default.nix
Normal file
|
@ -0,0 +1,53 @@
|
|||
{
|
||||
lib,
|
||||
config,
|
||||
...
|
||||
}: let
|
||||
inherit (lib) mkIf;
|
||||
in {
|
||||
# Enable arRPC for discord Rich Presence stuffs
|
||||
services.arrpc.enable = true;
|
||||
|
||||
programs.nixcord = {
|
||||
enable = true;
|
||||
vesktop.enable = true;
|
||||
discord.enable = false;
|
||||
|
||||
config = {
|
||||
useQuickCss = true;
|
||||
themeLinks = [
|
||||
(mkIf config.catppuccin.enable "https://catppuccin.github.io/discord/dist/catppuccin-${config.catppuccin.flavor}-${config.catppuccin.accent}.theme.css")
|
||||
];
|
||||
|
||||
frameless = true;
|
||||
plugins = {
|
||||
betterFolders = {
|
||||
enable = true;
|
||||
closeAllFolders = true;
|
||||
closeAllHomeButton = true;
|
||||
closeOthers = true;
|
||||
};
|
||||
|
||||
fakeNitro = {
|
||||
enable = true;
|
||||
enableStickerBypass = false;
|
||||
enableEmojiBypass = false;
|
||||
};
|
||||
|
||||
betterSettings.enable = true;
|
||||
betterUploadButton.enable = true;
|
||||
blurNSFW.enable = true;
|
||||
clearURLs.enable = true;
|
||||
callTimer.enable = true;
|
||||
consoleJanitor.enable = true;
|
||||
copyEmojiMarkdown.enable = true;
|
||||
userMessagesPronouns.enable = true;
|
||||
reviewDB.enable = true;
|
||||
|
||||
# Vesktop exclusive
|
||||
webRichPresence.enable = true;
|
||||
webScreenShareFixes.enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue