infrastructure/nixos/hosts/hades/overseerr/overseerr.nix
Renovate Bot 49c06a5ce3
Some checks are pending
Plex Update / update (push) Successful in 10s
Lint / lint (push) Has started running
chore(deps): update ghcr.io/sct/overseerr docker tag to v1.33.1
2023-07-24 14:00:28 +00:00

10 lines
376 B
Nix

_: {
networking.firewall.allowedTCPPorts = [ 5055 ];
# TODO: Write NixOS package https://github.com/NixOS/nixpkgs/issues/135885
virtualisation.oci-containers.containers.overseerr = {
image = "ghcr.io/sct/overseerr:1.33.1";
environment = { TZ = "Europe/Amsterdam"; };
ports = [ "5055:5055" ];
volumes = [ "/var/lib/overseerr/config:/app/config" ];
};
}