infrastructure/nixos/hosts/hades/prowlarr/configuration.nix
Vivian 2c16870d66
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
nixfmt
2023-05-04 13:08:10 +02:00

22 lines
408 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" ];
};
};
};
}