infrastructure/nixos/hosts/hades/overseerr/prowlarr.nix

12 lines
223 B
Nix
Raw Normal View History

2023-05-19 15:16:07 +02:00
_: {
2023-05-18 16:58:36 +02:00
services.prowlarr = {
enable = true;
openFirewall = true;
};
virtualisation.oci-containers.containers.flaresolverr = {
image = "flaresolverr/flaresolverr:v3.3.3";
2023-05-18 16:58:36 +02:00
ports = [ "8191:8191" ];
};
}