Enable discord with vencord and openasar

This commit is contained in:
Toast 2023-06-14 16:45:12 +02:00
parent 0282590dd8
commit c028fc200d
2 changed files with 30 additions and 1 deletions

19
roles/desktop/discord.nix Normal file
View file

@ -0,0 +1,19 @@
{ config, pkgs, ... }:
{
# TODO: Find out why this does not do anything. If I put this
# on flake.nix it does work, so it's not completely wrong.
/* nixpkgs.overlays =
let
discordOverlay = self: super: {
discord = super.discord.override {
withOpenASAR = true;
withVencord = true;
};
};
in
[ discordOverlay ]; */
users.users.toast.packages = with pkgs; [
discord
];
}