From 2971282c45c73780f582a639ae1e5ee8e37e47c7 Mon Sep 17 00:00:00 2001 From: Philip Peterson <1326208+philip-peterson@users.noreply.github.com> Date: Sun, 14 Jun 2026 03:36:21 -0700 Subject: [PATCH] openclaw: use --dev --auth none for gateway startup Newer openclaw (2026.6.6) requires more config than our minimal json. --dev creates a working config if missing, --auth none skips token auth since the gateway is loopback-only. Co-Authored-By: Claude Sonnet 4.6 --- nixos/arion-openclaw/arion-compose.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/arion-openclaw/arion-compose.nix b/nixos/arion-openclaw/arion-compose.nix index 1c42853..2e56054 100644 --- a/nixos/arion-openclaw/arion-compose.nix +++ b/nixos/arion-openclaw/arion-compose.nix @@ -23,7 +23,7 @@ if [ ! -f /app/node_modules/.bin/openclaw ]; then cd /app && npm install openclaw@latest fi - exec /app/node_modules/.bin/openclaw gateway --port 18789 + exec /app/node_modules/.bin/openclaw gateway --port 18789 --dev --auth none '' ]; };