6 lines
206 B
Nix
6 lines
206 B
Nix
|
{ config, ... }: {
|
||
|
services.syncplay.enable = true;
|
||
|
networking.firewall.allowedTCPPorts = [ config.services.syncplay.port ];
|
||
|
networking.firewall.allowedUDPPorts = [ config.services.syncplay.port ];
|
||
|
}
|