summaryrefslogtreecommitdiffstats
path: root/makefu/2configs/lanparty/mumble-server.nix
blob: 5b9631cd1bf90b4d173638cf9741ddd26994ab23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ 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;
  };
}