From f11f5ecadadf6d3592a349310cb3add767bd41ed Mon Sep 17 00:00:00 2001 From: Victor Date: Tue, 18 Oct 2022 16:26:36 +0200 Subject: [PATCH] add flaresolverr to prowlarr --- nixos/hosts/hades/prowlarr/configuration.nix | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/nixos/hosts/hades/prowlarr/configuration.nix b/nixos/hosts/hades/prowlarr/configuration.nix index e1b2035..da0eff8 100644 --- a/nixos/hosts/hades/prowlarr/configuration.nix +++ b/nixos/hosts/hades/prowlarr/configuration.nix @@ -7,4 +7,18 @@ enable = true; openFirewall = true; }; + + virtualisation.podman.enable = true; + + virtualisation.oci-containers = { + backend = "podman"; + containers = { + flaresolverr = { + image = "0x76/flaresolverr:3.0.0.beta2-fixup"; + ports = [ + "8191:8191" + ]; + }; + }; + }; }