dotfiles/modules/home/gui/apps/messaging/vesktop/default.nix

61 lines
1.3 KiB
Nix
Raw Normal View History

2025-10-01 19:51:55 -05:00
{
2025-10-11 16:59:05 -05:00
flake,
pkgs,
2025-10-01 19:51:55 -05:00
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
2025-11-18 02:05:01 -06:00
discord
;
};
2025-10-11 16:59:05 -05:00
imports = [
flake.inputs.nixcord.homeModules.nixcord
];
programs.nixcord = {
enable = false;
2025-10-11 16:59:05 -05:00
discord.vencord = {
unstable = false;
2025-10-11 16:59:05 -05:00
};
vesktop = {
enable = false;
2025-10-11 16:59:05 -05:00
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;
};
};
};
2025-10-01 19:51:55 -05:00
};
}