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

12 lines
180 B
Nix
Raw Normal View History

{ config, ... }:
2025-02-28 12:21:09 -05:00
{
imports = [ ./nginx ];
services.owncast = {
enable = config.system.server.enable;
port = 8060;
rtmp-port = 1945;
listen = "0.0.0.0";
2025-02-28 12:21:09 -05:00
};
}