jellyfin: Fix epg path

This commit is contained in:
Jan Kremer 2026-02-07 09:17:51 +01:00
parent 6655812d15
commit b30af1c0c2
No known key found for this signature in database

View file

@ -22,7 +22,7 @@
systemd = { systemd = {
services = { services = {
epg = { epg = {
script = "${pkgs.nodejs}/bin/npm run --prefix /media/TV/epg/ grab -- --channels=custom.channels.xml"; script = "${pkgs.nodejs}/bin/npm run --prefix /mnt/sdb1/media/TV/epg/ grab --- --channels=/mnt/sdb1/media/TV/custom.channels.xml";
path = [ path = [
pkgs.bash pkgs.bash
pkgs.nodejs pkgs.nodejs
@ -33,7 +33,6 @@
}; };
startAt = "daily"; # Creates a timer startAt = "daily"; # Creates a timer
}; };
jellyfin.environment.LIBVA_DRIVER_NAME = "iHD";
}; };
timers.epg.timerConfig.Persistent = true; timers.epg.timerConfig.Persistent = true;
}; };