switched to nixcord
This commit is contained in:
parent
a94fc70fc0
commit
9fd98381ea
1 changed files with 84 additions and 5 deletions
|
|
@ -1,6 +1,85 @@
|
|||
{pkgs, ...}: {
|
||||
home.packages = with pkgs; [
|
||||
vesktop
|
||||
discord
|
||||
];
|
||||
{
|
||||
pkgs,
|
||||
config,
|
||||
...
|
||||
}: {
|
||||
programs.nixcord = {
|
||||
enable = true;
|
||||
discord.enable = true;
|
||||
vesktop.enable = true;
|
||||
equibop.enable = true;
|
||||
config = {
|
||||
autoUpdateNotification = true;
|
||||
notifyAboutUpdates = true;
|
||||
|
||||
plugins = {
|
||||
AutoDNDWhilePlaying = {
|
||||
enable = true;
|
||||
excludeInvisible = true;
|
||||
};
|
||||
BlurNSFW = {
|
||||
enable = true;
|
||||
};
|
||||
ClearURLs = {
|
||||
enable = true;
|
||||
};
|
||||
OnePingPerDM = {
|
||||
enable = true;
|
||||
allowMentions = true;
|
||||
ignoreUsers = "Wumpus"; # die
|
||||
};
|
||||
RPCEditor = {
|
||||
enable = true;
|
||||
};
|
||||
ReviewDB = {
|
||||
enable = true;
|
||||
};
|
||||
anonymiseFileNames = {
|
||||
enable = true;
|
||||
consistent = "killallWumpus";
|
||||
};
|
||||
autoZipper = {
|
||||
enable = true;
|
||||
};
|
||||
betterInvites = {
|
||||
enable = true;
|
||||
};
|
||||
biggerStreamPreview = {
|
||||
enable = true;
|
||||
};
|
||||
blockKeywords = {
|
||||
enable = true;
|
||||
useRegex = true;
|
||||
blockedWords = "Wumpus";
|
||||
};
|
||||
customIdle = {
|
||||
enable = true;
|
||||
};
|
||||
expressionCloner = {
|
||||
enable = true;
|
||||
};
|
||||
fixFileExtensions = {
|
||||
enable = true;
|
||||
};
|
||||
fixYoutubeEmbeds = {
|
||||
enable = true;
|
||||
};
|
||||
forceOwnerCrown = {
|
||||
enable = true;
|
||||
};
|
||||
reverseImageSearch = {
|
||||
enable = true;
|
||||
};
|
||||
richMagnetLinks = {
|
||||
enable = true;
|
||||
};
|
||||
sekaiStickers = {
|
||||
enable = true;
|
||||
};
|
||||
sendTimestamps = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue