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

14 lines
155 B
Nix

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