17 lines
312 B
Nix
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;
|
|
};
|
|
}
|