snowflake/hosts/sakura/services/searxng.nix

15 lines
275 B
Nix
Raw Normal View History

2023-05-28 22:00:50 -04:00
{...}: {
virtualisation.oci-containers.containers.searxng = {
image = "searxng/searxng";
volumes = [
"/home/notoh/docker/searxng:/etc/searxng:rw"
];
environment = {
INSTANCE_NAME = "SearXNG";
};
ports = [
"8085:8080"
];
};
}