nixos-config/modules/system/services/server/social/owncast/default.nix

12 lines
181 B
Nix
Raw Normal View History

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