summaryrefslogtreecommitdiff
path: root/common/programs/vesktop.nix
blob: d3b7aff48a3964af9acc183d3b4600fdb05fd727 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ lib, config, ... }:
{
  programs.vesktop = {
    enable = true;
    vencord = {
      settings = {
        enabledThemes = lib.optionals config.beeMods.matugen.enable [ "midnight.css" ];
        autoUpdate = false;
        autoUpdateNotification = false;
        notifyAboutUpdates = false;
        useQuickCss = false;
        disableMinSize = true;
        plugins = {
          FakeNitro.enabled = false;
          AnonymiseFileNames.enabled = true;
          PlainFolderIcon.enabled = true;
          NoTypingAnimation.enabled = true;
          NoF1.enabled = true;
          petpet.enabled = true;
          QuickReply.enabled = true;
          SilentTyping.enabled = true;
          StreamerModeOnStream.enabled = false;
          NoReplyMention.enabled = true;
          OnePingPerDM.enabled = false;
        };
      };
    };
  };
}