nixos/hosts/architect/overseerr.nix

14 lines
281 B
Nix
Raw Permalink Normal View History

2021-11-25 11:42:32 +00:00
{ ... }:
2021-11-19 10:39:04 +00:00
{
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" ];
};
}