1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{ self, inputs, ... }: { flake.homeManagerModules.discord = {pkgs, ...}: { imports = [ # Standard path for nixcord's home-manager module inputs.nixcord.homeManagerModules.default ]; programs.nixcord = { enable = true; discord.vencord.enable = true; }; }; }