dotfiles/modules/home/gui/apps/messaging/vesktop/default.nix
2025-11-18 02:05:01 -06:00

60 lines
1.3 KiB
Nix
Executable file

{
flake,
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
discord
;
};
imports = [
flake.inputs.nixcord.homeModules.nixcord
];
programs.nixcord = {
enable = false;
discord.vencord = {
unstable = false;
};
vesktop = {
enable = false;
autoscroll.enable = true;
};
config =
let
themeFile = "catppuccin-macchiato.theme.css";
themePath = "https://catppuccin.github.io/discord/dist/${themeFile}";
in
{
useQuickCss = true;
autoUpdate = true;
themeLinks = [
themePath
];
enabledThemes = [
themeFile
];
frameless = true;
plugins = {
alwaysAnimate.enable = true;
alwaysTrust.domain = true;
alwaysTrust.file = true;
betterGifPicker.enable = true;
fakeNitro = {
enable = true;
enableEmojiBypass = true;
enableStickerBypass = true;
enableStreamQualityBypass = true;
};
blurNSFW.enable = false;
ignoreActivities = {
enable = true;
ignorePlaying = true;
ignoreWatching = true;
};
};
};
};
}