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

10 lines
181 B
Nix
Raw Normal View History

2024-10-20 16:21:47 +02:00
{config, pkgs, ...}:
{
environment.systemPackages = with pkgs; [
(discord.override {
withOpenASAR = true; # can do this here too
withVencord = true;
})
];
}