nixfiles/home/profiles/graphical/discord.nix
2025-07-22 13:37:49 -07:00

12 lines
195 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
(discord-krisp.override {
withOpenASAR = true;
withMoonlight = true;
})
];
programs.moonlight = {
enable = true;
};
}