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" + ]; + }; + }; + }; }