nixfiles/home/profiles/graphical/discord.nix
2025-06-27 14:24:02 -07:00

17 lines
268 B
Nix

{
pkgs,
lib,
...
}: let
inherit (lib.generators) toJSON;
in {
home.packages = with pkgs; [
(discord-krisp.override {
withOpenASAR = true;
withVencord = false; # can do this here too
})
legcord
#dorion
#betterdiscordctl
];
}