nix/config/openclaw/openclaw.json
Hari a4786ff6b8
Some checks are pending
quality / changes (push) Waiting to run
quality / Flake Check (push) Blocked by required conditions
quality / Nix Format Check (push) Blocked by required conditions
quality / Deploy netty (push) Blocked by required conditions
fix openclaw config (#61)
2026-04-03 15:49:26 +00:00

43 lines
846 B
JSON

{
"gateway": {
"mode": "local",
"bind": "loopback",
"port": 2470,
"trustedProxies": ["127.0.0.1", "::1"],
"controlUi": {
"allowedOrigins": ["https://netty.harivan.sh"]
},
"auth": {
"mode": "token",
"token": "${OPENCLAW_GATEWAY_TOKEN}"
}
},
"channels": {
"telegram": {
"botToken": "${TELEGRAM_BOT_TOKEN}",
"dmPolicy": "pairing"
}
},
"agents": {
"defaults": {
"workspace": "~/.openclaw/workspace",
"skipBootstrap": true,
"model": {
"primary": "anthropic/claude-sonnet-4-6"
},
"sandbox": {
"mode": "non-main"
}
}
},
"tools": {
"profile": "coding",
"fs": {
"workspaceOnly": true
},
"loopDetection": {
"enabled": true
},
"deny": ["sessions_send", "sessions_spawn"]
}
}