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

12 lines
229 B
Nix
Raw Normal View History

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