Discord: Difference between revisions
Add a separate section for managing Vesktop via home-manager. |
Properly install systemd service |
||
| (2 intermediate revisions by 2 users not shown) | |||
| Line 1: | Line 1: | ||
{{Infobox application | |||
| name = Discord | |||
| type = instant messaging and VoIP social platform | |||
| image = Discord-Symbol-Blurple.svg | |||
| developer = Discord Inc. | |||
| website = https://discord.com/ | |||
| platform = Cross-platform (Linux, macOS, Windows, Web) | |||
| github = https://github.com/discord | |||
}} | |||
Discord is an instant messaging and VoIP application with lots of functionality. It provides a web interface, though most users would prefer to use a client for interoperability with their system. | Discord is an instant messaging and VoIP application with lots of functionality. It provides a web interface, though most users would prefer to use a client for interoperability with their system. | ||
| Line 174: | Line 184: | ||
[[Category:Applications]] | [[Category:Applications]] | ||
[[Category:Gaming]] | [[Category:Gaming]] | ||
=== Discord RPC not functioning === | |||
==== NixOS ==== | |||
Install [https://github.com/OpenAsar/arrpc arRPC]: | |||
<syntaxhighlight lang="nixos"> | |||
{pkgs, ...}:{ | |||
enviroment.systemPackages = with pkgs; [ | |||
arrpc | |||
]; | |||
systemd.packages = with pkgs; [ arrpc ]; | |||
} | |||
</syntaxhighlight> | |||
==== Home Manager ==== | |||
Add the following to your Home Manager configuration | |||
<syntaxhighlight lang="nixos"> | |||
{pkgs, ...}:{ | |||
services.arrpc = { | |||
enable = true; | |||
package = pkgs.arrpc; #Default | |||
systemdTarget = "graphical-session.target"; #Default | |||
}; | |||
} | |||
</syntaxhighlight> | |||