fix(modules/searx): fix syntax error
Some checks failed
Nix CI / build (push) Failing after 34s

This commit is contained in:
Rustam Efimov 2026-04-12 18:11:08 +03:00
parent 8e27a535da
commit f609fd701e
No known key found for this signature in database

View file

@ -64,7 +64,7 @@ mkIf enable {
# Server configuration
server = {
base_url = cfg.domain != null ? "https://${cfg.domain}" : null;
base_url = if cfg.domain != null then "https://${cfg.domain}" else null end;
port = cfg.port;
bind_address = "127.0.0.1";
limiter = true;