mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-07 05:27:13 -06:00
feat: added nixcord
This commit is contained in:
parent
76749334b9
commit
d19d5288b0
3 changed files with 166 additions and 42 deletions
|
|
@ -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
|
||||
# }
|
||||
# '';
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue