every.channel/nix/modules/ec-publisher-guest.nix
Conrad Kramer 797f96e7eb
Some checks are pending
ci-gates / checks (push) Waiting to run
deploy-cloudflare / checks (push) Waiting to run
deploy-cloudflare / deploy (push) Blocked by required conditions
Speed up station guide startup
2026-06-10 02:34:44 -07:00

23 lines
458 B
Nix

{ lib, pkgs, ... }:
{
networking.hostName = lib.mkForce "ec-publisher";
services.every-channel.ec-node = {
relayUrl = lib.mkDefault "https://relay.every.channel/anon";
passthrough = lib.mkDefault false;
hdhomerun.autoDiscover = lib.mkDefault true;
control = {
enable = lib.mkDefault true;
discovery = lib.mkDefault "dht,mdns,dns";
};
};
environment.systemPackages = with pkgs; [
curl
ffmpeg
jq
];
}