2025-01-17 17:06:28 -05:00
|
|
|
{ config, lib, ... }:
|
|
|
|
{
|
|
|
|
imports = [ ./nginx ];
|
|
|
|
|
|
|
|
config = lib.mkIf config.system.socialserver.enable {
|
|
|
|
services.owncast = {
|
|
|
|
enable = true;
|
|
|
|
port = 8060;
|
|
|
|
rtmp-port = 1945;
|
|
|
|
listen = "0.0.0.0";
|
|
|
|
};
|
2025-03-06 23:22:49 -05:00
|
|
|
environment.persistence."/persist".directories = [ "/var/lib/owncast" ];
|
2025-01-17 17:06:28 -05:00
|
|
|
};
|
|
|
|
}
|