infrastructure/nixos/hosts/hades/overseerr/prowlarr.nix
2024-08-22 21:17:14 +02:00

11 lines
224 B
Nix

_: {
services.prowlarr = {
enable = true;
openFirewall = true;
};
virtualisation.oci-containers.containers.flaresolverr = {
image = "flaresolverr/flaresolverr:v3.3.21";
ports = [ "8191:8191" ];
};
}