Auto-commit: 2026-01-06 03:53:20
This commit is contained in:
@@ -0,0 +1,35 @@
|
|||||||
|
|
||||||
|
{
|
||||||
|
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; # 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
|
||||||
|
plugins = {
|
||||||
|
hideAttachments.enable = true; # Enable a plugin (works with both Vencord and Equicord)
|
||||||
|
ignoreActivities = { # Enable a plugin and set some options
|
||||||
|
enable = true;
|
||||||
|
ignorePlaying = true;
|
||||||
|
ignoreWatching = true;
|
||||||
|
ignoredActivities = [ "someActivity" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
extraConfig = {
|
||||||
|
# Some extra JSON config here
|
||||||
|
# ...
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# ...
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user