Ahwxorg/modules/services/syncplay.nix
2025-09-19 12:38:04 +02:00

8 lines
173 B
Nix

{ config, ... }:
{
services.syncplay = {
enable = true;
passwordFile = config.sops.secrets.syncplay.path;
};
networking.firewall.allowedTCPPorts = [ 8999 ];
}