23 lines
528 B
Nix
23 lines
528 B
Nix
{
|
|
services.jellyfin.enable = true; # port = 8096
|
|
users.users.jellyfin.extraGroups = [
|
|
"media"
|
|
"video"
|
|
"render"
|
|
];
|
|
|
|
## Grab EPG data daily, runs on port 5000
|
|
virtualisation.oci-containers = {
|
|
containers = {
|
|
epg = {
|
|
image = "ghcr.io/iptv-org/epg:master";
|
|
ports = [ "5000:3000" ];
|
|
volumes = [ "/mnt/media/TV/channels.xml:/epg/public/channels.xml" ];
|
|
extraOptions = [ "--dns=1.1.1.1" ];
|
|
environment = {
|
|
DAYS = "14";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|