19 lines
246 B
Nix
19 lines
246 B
Nix
|
{ ... }:
|
||
|
|
||
|
|
||
|
{
|
||
|
networking.firewall = {
|
||
|
allowedTCPPorts = [ 33445 ];
|
||
|
allowedUDPPorts = [ 33445 ];
|
||
|
};
|
||
|
|
||
|
|
||
|
services.tox-node = {
|
||
|
enable = true;
|
||
|
udpAddress = "0.0.0.0:33445";
|
||
|
tcpAddresses = [
|
||
|
"0.0.0.0:33445"
|
||
|
];
|
||
|
};
|
||
|
}
|