I don't use the official discord app, and vesktop uses it's own vencord so I don't need it anymore
15 lines
292 B
Nix
15 lines
292 B
Nix
{pkgs, ...}: let
|
|
discordOverlay = _self: super: {
|
|
discord = super.discord.override {
|
|
withOpenASAR = true;
|
|
withVencord = true;
|
|
};
|
|
};
|
|
in {
|
|
nixpkgs.overlays = [discordOverlay];
|
|
home-manager.users.toast = {
|
|
home.packages = with pkgs; [
|
|
vesktop
|
|
];
|
|
};
|
|
}
|