refactored *arr

This commit is contained in:
Vivian 2023-05-18 16:58:36 +02:00
parent 2fd2f93853
commit 67a7ac382b
11 changed files with 51 additions and 104 deletions

View file

@ -0,0 +1,10 @@
{ ... }: {
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" ];
};
}