33 lines
440 B
Nix
33 lines
440 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
virtualisation.oci-containers.containers.jellyseerr = {
|
|
image = "fallenbagel/jellyseerr:latest";
|
|
autoStart = true;
|
|
|
|
dependsOn = [
|
|
"pihole"
|
|
"sonarr"
|
|
"radarr"
|
|
"jellyfin"
|
|
];
|
|
|
|
ports = [
|
|
"5055:5055"
|
|
];
|
|
|
|
volumes = [
|
|
"jellyseerr_config:/app/config"
|
|
];
|
|
|
|
environment = {
|
|
TZ = "Europe/Berlin";
|
|
};
|
|
|
|
extraOptions = [];
|
|
};
|
|
}
|