1

Add jellyseerr service

This commit is contained in:
2023-09-01 11:39:05 +02:00
parent c8d958a0c6
commit 3d5773e8f6

View File

@ -0,0 +1,30 @@
{config, lib, pkgs, ...}:
{
virtualisation.oci-containers.containers.jellyseerr = {
image = "fallenbagel/jellyseerr:latest";
autoStart = true;
dependsOn = [
"sonarr"
"radarr"
"jellyfin"
];
ports = [
"5055:5055"
];
volumes = [
"jellyseerr_config:/app/config"
];
environment = {
TZ = "Europe/Berlin";
};
extraOptions = [
# "--restart=always" # Conflicts with NixOS' default of using --rm
];
};
}