feat: switch to mullvadvpn, switch to docker

This commit is contained in:
Jacob Bachmann 2024-05-05 11:41:13 +02:00
parent 36ace852a8
commit 720d341cca
Signed by: bchmnn
GPG key ID: 732A612DAD28067D
8 changed files with 21 additions and 21 deletions

25
modules/arr.nix Normal file
View file

@ -0,0 +1,25 @@
{
services.jackett = {
enable = true;
};
virtualisation = {
oci-containers = {
containers = {
flare-solvarr = {
image = "ghcr.io/flaresolverr/flaresolverr:latest";
autoStart = true;
ports = ["127.0.0.1:8191:8191"];
environment = {
LOG_LEVEL = "info";
LOG_HTML = "false";
CAPTCHA_SOLVER = "hcaptcha-solver";
TZ="Europe/Berlin";
};
};
};
};
};
}