nix-config/home-manager/sajenim/features/desktop/discord/default.nix
jasmine b180fb4481
feat(discord): add BetterDiscord with gruvbox material dark theme
Restore Discord with OpenASAR overlay and BetterDiscord CSS theming.
Custom gruvbox material dark medium palette with proper read/unread
channel distinction and minimal UI tweaks. Add mpd-discord-rpc for
music rich presence.
2026-02-01 19:24:45 +08:00

17 lines
326 B
Nix

{pkgs, ...}: {
nixpkgs.overlays = [
(final: prev: {
discord = prev.discord.override {withOpenASAR = true;};
})
];
home.packages = with pkgs; [
discord
betterdiscordctl
];
home.file.".config/BetterDiscord/data/stable/custom.css" = {
enable = true;
source = ./config/custom.css;
};
}