initial setup

This commit is contained in:
2025-05-29 13:53:53 +02:00
commit 9f1f69cf9b
112 changed files with 3344 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ ... }:
{
virtualisation.oci-containers.containers."container-jellyseerr-app" = {
autoStart = true;
image = "fallenbagel/jellyseerr";
environment = {
"TZ" = "Europe/Berlin";
"JELLYFIN_TYPE" = "emby";
};
networks = [
"network-internal"
];
volumes = [
"volume-jellyseerr-config:/app/config:rw"
];
ports = ["5055:5055"];
extraOptions = [
"--pull=always"
];
};
}