MyNixOS website logo
option

services.hister.settings

Hister configuration rendered to YAML and passed via HISTER_CONFIG. Accepts any structure the server accepts: see the app, server, indexer, crawler, hotkeys, extractors, semantic_search, and sensitive_content_patterns blocks documented upstream.

Declarations
Type
YAML 1.1 value
Default
{ }
Example
{
  app = {
    search_url = "https://google.com/search?q={query}";
    log_level = "info";
  };
  server = {
    address = "127.0.0.1:4433";
    database = "db.sqlite3";
  };
  hotkeys.web = {
    "/" = "focus_search_input";
    "enter" = "open_result";
  };
}