nix-config/modules/nixos/jellyfin.nix
2026-03-20 12:48:57 +01:00

23 lines
534 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/custom.channels.xml:/epg/public/channels.xml" ];
extraOptions = [ "--dns=1.1.1.1" ];
environment = {
DAYS = "7";
};
};
};
};
}