feat: added nixcord

This commit is contained in:
Nick 2025-10-11 16:59:05 -05:00
parent 76749334b9
commit d19d5288b0
3 changed files with 166 additions and 42 deletions

View file

@ -1,24 +1,73 @@
{
pkgs,
flake,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
vesktop
;
imports = [
flake.inputs.nixcord.homeModules.nixcord
];
programs.nixcord = {
enable = true;
discord.vencord = {
unstable = true;
};
vesktop = {
enable = true;
autoscroll.enable = true;
};
dorion = {
enable = true;
trayIconEnabled = false;
};
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;
};
};
};
dorion = {
theme = "dark";
zoom = "1.0";
blur = "acrylic";
sysTray = false;
openOnStartup = true;
autoClearCache = true;
disableHardwareAccel = false;
rpcServer = true;
rpcProcessScanner = true;
pushToTalk = false;
desktopNotifications = true;
unreadBadge = true;
};
extraConfig = {
};
};
# xdg.configFile."vesktop/settings.json".text = ''
# {
# "discordBranch": "stable",
# "minimizeToTray": false,
# "arRPC": true,
# "splashColor": "rgb(202, 211, 245)",
# "splashBackground": "rgb(36, 39, 58)",
# "customTitleBar": false,
# "tray": false,
# "staticTitle": false,
# "enableMenu": false
# }
# '';
}