ROCKPro64-Server/system/services/server/owncast/default.nix

13 lines
229 B
Nix

{ config, lib, ... }:
{
imports = [ ./nginx ];
config = lib.mkIf config.system.server.enable {
services.owncast = {
enable = true;
port = 8060;
rtmp-port = 1945;
listen = "0.0.0.0";
};
};
}