stockholm/makefu/2configs/lanparty/mumble-server.nix
2017-11-08 10:49:47 +01:00

13 lines
302 B
Nix

{ config, ... }:
{
networking.firewall.allowedTCPPorts = [ 64738 ];
networking.firewall.allowedUDPPorts = [ 64738 ];
services.murmur = {
enable = true;
welcometext = "Welcome to the LANest Party mumble server";
bonjour = true;
hostName = "0.0.0.0";
sendVersion = true;
};
}