19 lines
369 B
Nix
19 lines
369 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
programs.nixcord = {
|
||
|
enable = true;
|
||
|
discord = lib.mkForce { enable = false; };
|
||
|
vesktop.enable = true;
|
||
|
|
||
|
config = {
|
||
|
useQuickCss = true;
|
||
|
plugins = {
|
||
|
betterFolders.enable = true;
|
||
|
betterRoleContext.enable = true;
|
||
|
mentionAvatars.enable = true;
|
||
|
# Add other plugins as needed
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|