nix-config/home/programs/social/vesktop.nix

19 lines
369 B
Nix
Raw Normal View History

2025-09-05 22:30:30 +02:00
{ 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
};
};
};
}