1
Files
flake-homelab/ServeNix/services/jellyseerr.nix
2023-09-01 14:31:46 +02:00

32 lines
425 B
Nix

{
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 = [];
};
}