From 1551e5b02b1db86d197e8f2a38652bb79e5ac98a Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Wed, 3 Jun 2026 17:23:06 -0700 Subject: [PATCH] Add memory provider for hermes --- machines/fry/workspaces/hermes.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/machines/fry/workspaces/hermes.nix b/machines/fry/workspaces/hermes.nix index fe5346b..72f1b1b 100644 --- a/machines/fry/workspaces/hermes.nix +++ b/machines/fry/workspaces/hermes.nix @@ -43,6 +43,16 @@ }; toolsets = [ "all" ]; terminal.backend = "local"; + + # Self-hosted memory: pure SQLite in-process, no external services or + # API keys. db file lives under HERMES_HOME (= /var/lib/hermes/.hermes), + # which is on the persisted bind-mount. + memory.provider = "holographic"; + plugins.hermes-memory-store = { + db_path = "/var/lib/hermes/.hermes/memory_store.db"; + auto_extract = true; + default_trust = 0.5; + }; }; };