1

Services/Jellyfin: Update to v10.10.7

This commit is contained in:
2025-07-11 21:37:12 +02:00
parent 9b88fce80d
commit cabc48164f

View File

@ -3,9 +3,12 @@
lib,
pkgs,
...
}: {
virtualisation.oci-containers.containers.jellyfin = {
image = "linuxserver/jellyfin:latest";
}: let
jellyfinVersion = "10.10.7";
in {
virtualisation.oci-containers.containers = {
jellyfin = {
image = "linuxserver/jellyfin:${jellyfinVersion}";
autoStart = true;
login = {
@ -45,4 +48,5 @@
"--net=behind-nginx"
];
};
};
}