17 lines
346 B
Nix
17 lines
346 B
Nix
|
{
|
||
|
virtualisation = {
|
||
|
containers.enable = true;
|
||
|
podman.enable = true;
|
||
|
oci-containers.containers = {
|
||
|
flaresolverr = {
|
||
|
image = "ghcr.io/flaresolverr/flaresolverr:latest";
|
||
|
environment.LOG_LEVEL = "info";
|
||
|
extraOptions = [
|
||
|
"--pull=newer"
|
||
|
"--network=www"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|