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