nixfiles/home/profiles/graphical/discord.nix
2025-07-13 05:10:57 -07:00

20 lines
308 B
Nix

{
pkgs,
lib,
...
}: {
home.packages = with pkgs; [
(discord-krisp.override {
withOpenASAR = true;
withMoonlight = true;
withVencord = false; # can do this here too
})
legcord
#dorion
#betterdiscordctl
];
programs.moonlight-mod = {
enable = true;
};
}