From f63dbebd61d9dcb571d2940a8ecb6b137bcfbda8 Mon Sep 17 00:00:00 2001 From: Jan Kremer Date: Mon, 23 Mar 2026 09:54:21 +0100 Subject: [PATCH] Increase epg days --- modules/nixos/jellyfin.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/nixos/jellyfin.nix b/modules/nixos/jellyfin.nix index 90ee998..caf1d5a 100644 --- a/modules/nixos/jellyfin.nix +++ b/modules/nixos/jellyfin.nix @@ -12,10 +12,10 @@ epg = { image = "ghcr.io/iptv-org/epg:master"; ports = [ "5000:3000" ]; - volumes = [ "/mnt/media/TV/custom.channels.xml:/epg/public/channels.xml" ]; + volumes = [ "/mnt/media/TV/channels.xml:/epg/public/channels.xml" ]; extraOptions = [ "--dns=1.1.1.1" ]; environment = { - DAYS = "7"; + DAYS = "14"; }; }; };