Files
stubbfelnix/services/teamspeak.nix
2017-11-17 02:11:40 +01:00

17 lines
312 B
Nix

{ config, pkgs, ... }:
{
networking.firewall.allowedTCPPorts = [
30033 # ts TCP port opened for file transfers.
10011 # ts TCP port opened for ServerQuery connections.
];
networking.firewall.allowedUDPPorts = [
9987 # ts port
];
services.teamspeak3= {
enable = true;
};
}