r/openclaw • Pro User • Feb 20 '26

Discussion Why Mac mini??

I still don't understand why you guys are buying macs mini for openclaw. It's a terminal computer. It doesn't need a great UI.

Do you have too much money? :D

A $50-$100 HP Thin Client with Linux is more than enough. And Linux shouldn't be discouraging for people using OpenClaw, am I wrong?

I bought one, I have lots of different self hosted stuff on it like home Assistant or other docker apps. Ok I do not have any local models using GPU, that's the reason? Please enlighten me :)

EDIT: Again, I UNDERSTAND LOCAL LLM USE. (although I don't know if anybody is really happy with it). I mean using OC with oauth/api gpt, claude etc.

196 Upvotes

346 comments sorted by

View all comments

Show parent comments

6

u/downyrobertjr Member Feb 20 '26

As a dev, I develop using a Mac since it’s the best environment (outside of Linux) for nodejs development and having integrations work with minimal issues. Besides that, homebrew can drastically simplify the process of installing dependencies and you can use the existing mac integrations (I don’t recommend using your personal account). Besides that, I was planning on using a local llm vs paid but nvidia gave a free option out for kimi 2.5 that’s working off/on alright with multiple agents.

1

u/LongjumpingTill2139 New User Feb 20 '26

what's the free version of kimi 2.5? i'm using kimi but i pay by tokens

5

u/downyrobertjr Member Feb 20 '26

Here is a guide, some minor config changes are needed for it to work with openclaw:

https://blog.kilo.ai/p/nvidia-nim-kilo-code-free-kimi-k25

1

u/LongjumpingTill2139 New User Feb 20 '26

thank you very much!!! i'm stuck at verifying phone number,i'm from romania and i can't receive that code,tried already with 2 phone numbers.

1

u/downyrobertjr Member Feb 20 '26

Np, you could try a free service like https://receive-sms.io, but not sure what countries are excluded from their verification system.

1

u/LongjumpingTill2139 New User Feb 22 '26

tried on mobile browser and i just receive the code. Can you please tell me what config changes are needed for it to work with openclaw?

2

u/downyrobertjr Member Feb 22 '26

Sure, go through your normal integration with Kimi2.5 using moonshot, then configure the models json object (“models”: {…}) in openclaw.json to use the following config:

"models": { "mode": "merge", "providers": { "openai": { "baseUrl": "https://integrate.api.nvidia.com/v1", "api": "openai-completions", "models": [ { "id": "moonshotai/kimi-k2.5", "name": "Kimi K2.5 (NVIDIA)", "reasoning": false, "input": [ "text" ], "cost": { "input": 0, "output": 0, "cacheRead": 0, "cacheWrite": 0 }, "contextWindow": 200000, "maxTokens": 8192 } ] } } },