nixos-config/configs/sputnik/syncplay.nix

6 lines
206 B
Nix
Raw Normal View History

2020-04-22 22:25:26 +02:00
{ config, ... }: {
services.syncplay.enable = true;
networking.firewall.allowedTCPPorts = [ config.services.syncplay.port ];
networking.firewall.allowedUDPPorts = [ config.services.syncplay.port ];
}