nixos-infra/services/searxng/options.nix
Rustam Efimov 1c8bc1d422
Some checks failed
Nix CI / build (push) Failing after 1m36s
feat(hosts/velarion): enable SearXNG
2026-04-12 18:06:42 +03:00

17 lines
393 B
Nix

{ lib, ... }:
with lib;
{
options.machine.searxng = {
enable = mkEnableOption "SearXNG";
domain = mkOption {
type = types.nullOr types.str;
default = null;
description = "Domain name. If not set, will be disabled, and use the localhost.";
};
port = mkOption {
type = types.port;
default = 8888;
description = "Listen port.";
};
};
}