kariru: move flaresolverr to default.nix
Some checks are pending
flake check / check (push) Waiting to run
fmt check / check (push) Waiting to run

This commit is contained in:
notohh 2024-01-22 21:58:47 -05:00
parent 5e5e29c86b
commit 7d80b0ad87
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 7 additions and 9 deletions

View file

@ -1,11 +1,11 @@
{...}: { {pkgs, ...}: {
networking.firewall.allowedTCPPorts = [9292]; networking.firewall.allowedTCPPorts = [9292];
imports = [ imports = [
./restic.nix ./restic.nix
./traefik.nix ./traefik.nix
./torrent.nix ./torrent.nix
./flaresolverr.nix
]; ];
environment.systemPackages = [pkgs.recyclarr];
services.radarr = { services.radarr = {
enable = true; enable = true;
openFirewall = true; openFirewall = true;
@ -64,5 +64,10 @@
]; ];
extraOptions = ["--network=host"]; extraOptions = ["--network=host"];
}; };
flaresolverr = {
image = "ghcr.io/flaresolverr/flaresolverr:v3.3.13";
ports = ["8191:8191"];
extraOptions = ["--network=host"];
};
}; };
} }

View file

@ -1,7 +0,0 @@
_: {
virtualisation.oci-containers.containers.flaresolverr = {
image = "ghcr.io/flaresolverr/flaresolverr:v3.3.13";
ports = ["8191:8191"];
extraOptions = ["--network=host"];
};
}