system/hosts/istal/services/tox.nix

19 lines
246 B
Nix
Raw Normal View History

2024-09-05 18:45:42 +03:00
{ ... }:
{
networking.firewall = {
allowedTCPPorts = [ 33445 ];
allowedUDPPorts = [ 33445 ];
};
services.tox-node = {
enable = true;
udpAddress = "0.0.0.0:33445";
tcpAddresses = [
"0.0.0.0:33445"
];
};
}