Discord: Difference between revisions
imported>Scrumplex m Move "Join the NixOS Discord" below Usage |
imported>Hypnosis2839 →Usage: change overlay to override, remove duplicate info |
||
Line 25: | Line 25: | ||
[https://nixos.org/manual/nixpkgs/stable/#sec-declarative-package-management declarative package management on non-nixos] | [https://nixos.org/manual/nixpkgs/stable/#sec-declarative-package-management declarative package management on non-nixos] | ||
== | == Alternative packages == | ||
=== BetterDiscord === | |||
== | |||
[https://betterdiscord.app BetterDiscord] is a client modification engine which allows you to use custom plugins, themes, and more. The easiest way to install this is using [https://github.com/bb010g/betterdiscordctl betterdiscordctl]. | [https://betterdiscord.app BetterDiscord] is a client modification engine which allows you to use custom plugins, themes, and more. The easiest way to install this is using [https://github.com/bb010g/betterdiscordctl betterdiscordctl]. | ||
<syntaxhighlight lang="console"> | <syntaxhighlight lang="console"> | ||
Line 40: | Line 33: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
=== OpenAsar | === OpenAsar / Vencord === | ||
You can use Discord [https://github.com/GooseMod/OpenAsar OpenAsar] and/or [https://github.com/Vendicated/Vencord Vencord] by replacing `pkgs.discord` in your config with the following override: | |||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
(pkgs.discord.override { | |||
# remove any overrides that you don't want | |||
withOpenASAR = true; | |||
withVencord = true; | |||
}) | |||
</syntaxhighlight> | </syntaxhighlight> | ||