11 lines
134 B
Nix
11 lines
134 B
Nix
|
{ pkgs, ... }: {
|
||
|
|
||
|
|
||
|
services.owncast = {
|
||
|
enable = true;
|
||
|
openFirewall = true;
|
||
|
listen = "0.0.0.0";
|
||
|
port = 3413;
|
||
|
};
|
||
|
}
|