infrastructure/nixos/hosts/hades/overseerr/overseerr.nix
Vivian 409c927fff
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fixes
2023-05-19 15:16:07 +02:00

11 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.32.5";
environment = { TZ = "Europe/Amsterdam"; };
ports = [ "5055:5055" ];
volumes = [ "/var/lib/overseerr/config:/app/config" ];
};
}