nix-configs/nixos-modules/docker-flaresolverr.nix

18 lines
378 B
Nix
Raw Normal View History

2024-10-01 17:42:47 -04:00
{
virtualisation = {
containers.enable = true;
podman.enable = true;
oci-containers.containers = {
flaresolverr = {
image = "ghcr.io/flaresolverr/flaresolverr:latest";
environment.LOG_LEVEL = "info";
2024-10-03 17:50:49 -04:00
labels.swag = "enable";
2024-10-01 17:42:47 -04:00
extraOptions = [
"--pull=newer"
"--network=www"
];
};
};
};
}