nixos-config/modules/services/syncplay.nix

9 lines
173 B
Nix
Raw Normal View History

2025-09-19 12:25:33 +02:00
{ config, ... }:
{
services.syncplay = {
enable = true;
passwordFile = config.sops.secrets.syncplay.path;
};
2025-09-19 12:37:52 +02:00
networking.firewall.allowedTCPPorts = [ 8999 ];
2025-09-19 12:25:33 +02:00
}