Files
nix/modules/software/llm/opencode.nix
T
2026-08-25 01:30:59 -05:00

29 lines
620 B
Nix

{
den.aspects.opencode = {
homeManager = {
programs.opencode = {
enable = true;
settings = {
plugin = [ "opencode-plugin-llama.cpp@latest" ];
provider = {
"llama.cpp" = {
npm = "@ai-sdk/openai-compatible";
name = "llama.cpp";
options = {
baseURL = "https://llama.bug.tools/v1";
};
models = {
"qwen3.6-35b-a3b" = {
name = "qwen3.6-35b-a3b";
};
};
};
};
};
};
};
};
}