14 lines
333 B
Nix
14 lines
333 B
Nix
{
|
|
services.jellyfin.enable = true; # port = 8096
|
|
|
|
## Grab EPG data daily
|
|
virtualisation.oci-containers = {
|
|
containers = {
|
|
epg = {
|
|
image = "ghcr.io/iptv-org/epg:master";
|
|
ports = [ "3001:3000" ];
|
|
volumes = [ "/mnt/media/TV/custom.channels.xml:/epg/public/channels.xml" ];
|
|
};
|
|
};
|
|
};
|
|
}
|