13 lines
387 B
Nix
13 lines
387 B
Nix
|
{ config, pkgs, ... }: {
|
||
|
imports = [ ../nginx.nix ];
|
||
|
|
||
|
networking.firewall.allowedTCPPorts = [ 8888 ];
|
||
|
virtualisation.oci-containers.containers.searxng = {
|
||
|
image =
|
||
|
"searxng/searxng@sha256:650c0b183a129e10c2493126bb27c3541ffebbead6e0255fab91831457211b06";
|
||
|
volumes = [ ];
|
||
|
environment = { BASE_URL = "https://search.cyplo.dev"; };
|
||
|
ports = [ "8888:8080" ];
|
||
|
};
|
||
|
}
|