12 lines
149 B
Nix
12 lines
149 B
Nix
{ ... }:
|
|
{
|
|
imports = [ ./nginx ];
|
|
|
|
services.owncast = {
|
|
enable = true;
|
|
port = 8060;
|
|
rtmp-port = 1945;
|
|
listen = "0.0.0.0";
|
|
};
|
|
}
|