snowflake/modules/services/searxng.nix

12 lines
236 B
Nix
Raw Normal View History

2023-05-13 23:20:28 -04:00
{...}: {
virtualisation.oci-containers.containers.searxng = {
image = "searxng/searxng";
volumes = [
"/home/notoh/docker/searxng:/etc/searxng:rw"
];
environment = {
2023-05-14 09:57:06 -04:00
INSTANCE_NAME = "SearXNG";
2023-05-13 23:20:28 -04:00
};
};
}