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

12 lines
180 B
Nix

{ config, ... }:
{
imports = [ ./nginx ];
services.owncast = {
enable = config.system.server.enable;
port = 8060;
rtmp-port = 1945;
listen = "0.0.0.0";
};
}