nix-config/modules/nixos/jellyfin.nix
2026-03-10 12:45:19 +01:00

20 lines
459 B
Nix

{
services.jellyfin.enable = true; # port = 8096
users.users.jellyfin.extraGroups = [
"media"
"video"
"render"
];
## 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" ];
};
};
};
}