infrastructure/nixos/hosts/hades/prowlarr/configuration.nix
2023-02-05 11:29:00 +01:00

24 lines
448 B
Nix

{ config, pkgs, ... }:
{
networking.interfaces.eth0.useDHCP = true;
system.stateVersion = "22.11";
services.prowlarr = {
enable = true;
openFirewall = true;
};
virtualisation.podman.enable = true;
virtualisation.oci-containers = {
backend = "podman";
containers = {
flaresolverr = {
image = "flaresolverr/flaresolverr:v3.0.0";
ports = [
"8191:8191"
];
};
};
};
}