Quassel: Difference between revisions
imported>Fadenb m Syntax highlighting |
imported>Fufexan m Add page to Applications category |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 4: | Line 4: | ||
== Client == | == Client == | ||
Previously, multiple builds of Quassel clients were provided in Nixpkgs. It is not the case anymore. | |||
The client is <code>quasselClient</code>. | |||
== Server == | == Server == | ||
Line 24: | Line 15: | ||
to your NixOS configuration. By default, the server only accepts connections from the local machine; set | to your NixOS configuration. By default, the server only accepts connections from the local machine; set | ||
<syntaxhighlight lang="nix"> | <syntaxhighlight lang="nix"> | ||
services.quassel. | services.quassel.interfaces = [ "0.0.0.0" ]; | ||
networking.firewall.allowedTCPPorts = [ 4242 ]; | networking.firewall.allowedTCPPorts = [ 4242 ]; | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 80: | Line 71: | ||
sudo systemctl start quassel.service | sudo systemctl start quassel.service | ||
</syntaxhighlight> | </syntaxhighlight> | ||
[[Category: Applications]] |