Quassel: Difference between revisions

imported>Fadenb
m Syntax highlighting
imported>Luis-Hebendanz
mNo edit summary
Line 24: Line 24:
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.interface = "0.0.0.0";
services.quassel.interfaces = [ "0.0.0.0" ];
networking.firewall.allowedTCPPorts = [ 4242 ];
networking.firewall.allowedTCPPorts = [ 4242 ];
</syntaxhighlight>
</syntaxhighlight>