infrastructure/nixos/hosts/hades/prowlarr/configuration.nix
Victor 3dfe40e4e2
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
apply deadnix
2023-05-04 13:06:08 +02:00

24 lines
426 B
Nix

_:
{
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.1.2";
ports = [
"8191:8191"
];
};
};
};
}