snowflake/hosts/sakura/services/searxng.nix

15 lines
271 B
Nix
Raw Normal View History

2023-06-11 02:08:06 -04:00
_: {
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"
];
};
}