14 lines
281 B
Nix
14 lines
281 B
Nix
{ ... }:
|
|
|
|
{
|
|
virtualisation.oci-containers.containers."overseerr" = {
|
|
image = "sctx/overseerr:latest";
|
|
volumes = [ "/var/lib/overseerr:/app/config" ];
|
|
environment = {
|
|
"LOG_LEVEL" = "debug";
|
|
"TZ" = "Europe/Rome";
|
|
};
|
|
#ports = [ "5055:5055" ];
|
|
};
|
|
}
|