feat: massive cleanup

This commit is contained in:
Nick 2025-10-13 17:46:29 -05:00
parent 9a9c52064a
commit 556e23fdb4
41 changed files with 1 additions and 589 deletions

View file

@ -0,0 +1,73 @@
{
flake,
...
}:
{
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 = {
};
};
}