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

25 lines
448 B
Nix
Raw Normal View History

2022-09-10 16:21:21 +02:00
{ config, pkgs, ... }:
{
networking.interfaces.eth0.useDHCP = true;
2022-10-29 13:06:37 +02:00
system.stateVersion = "22.11";
2022-09-10 16:21:21 +02:00
services.prowlarr = {
enable = true;
openFirewall = true;
};
2022-10-18 16:26:36 +02:00
virtualisation.podman.enable = true;
virtualisation.oci-containers = {
backend = "podman";
containers = {
flaresolverr = {
image = "flaresolverr/flaresolverr:v3.1.1";
2022-10-18 16:26:36 +02:00
ports = [
"8191:8191"
];
};
};
};
2022-09-10 16:21:21 +02:00
}