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.
19 lines
260 B
Nix
19 lines
260 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
./cava
|
|
./discord
|
|
./mpv
|
|
./obs
|
|
];
|
|
|
|
# Install some packages for our desktop environment
|
|
home.packages = with pkgs; [
|
|
firefox
|
|
gimp
|
|
piper
|
|
zathura
|
|
|
|
# KDE Packages
|
|
kdePackages.kdenlive
|
|
];
|
|
}
|