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

14 lines
164 B
Nix
Raw Normal View History

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