nix-config/hosts/goober/features/software/discord.nix

10 lines
181 B
Nix

{config, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
(discord.override {
withOpenASAR = true; # can do this here too
withVencord = true;
})
];
}