nix-config/modules/nixos/jellyfin.nix
Jan Kremer af6d9e66d2
Add jellyfin packages
Hopefully this fixes LiveTV thumbnails
2026-03-10 11:12:49 +01:00

21 lines
496 B
Nix

{ pkgs, ... }:
{
services.jellyfin.enable = true; # port = 8096
environment.systemPackages = [
pkgs.jellyfin
pkgs.jellyfin-web
pkgs.jellyfin-ffmpeg
];
## 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" ];
};
};
};
}