nix-config/modules/nixos/jellyfin.nix
2026-02-21 09:48:24 +01:00

15 lines
378 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 = [ "3000:3000" ];
volumes = [ "/mnt/media/TV/custom.channels.xml:/epg/public/channels.xml" ];
extraOptions = [ "--network=host" ];
};
};
};
}