NixOS-Config/modules/system/services/server/social/owncast/default.nix

12 lines
149 B
Nix
Raw Normal View History

{ ... }:
2024-10-09 03:36:08 -04:00
{
imports = [ ./nginx ];
services.owncast = {
enable = true;
port = 8060;
rtmp-port = 1945;
listen = "0.0.0.0";
};
}