106 lines
2.1 KiB
Nix
106 lines
2.1 KiB
Nix
{inputs, ...}: let
|
|
local = import ./_lib/local.nix;
|
|
inherit (local) secretPath;
|
|
opencodeSecretPath = secretPath "opencode-api-key";
|
|
in {
|
|
den.aspects.ai-tools.homeManager = {
|
|
lib,
|
|
pkgs,
|
|
inputs',
|
|
...
|
|
}: {
|
|
home.packages = [
|
|
inputs'.llm-agents.packages.claude-code
|
|
pkgs.cog-cli
|
|
];
|
|
|
|
programs.nushell.extraEnv =
|
|
lib.mkAfter ''
|
|
if ("${opencodeSecretPath}" | path exists) {
|
|
$env.OPENCODE_API_KEY = (open --raw "${opencodeSecretPath}" | str trim)
|
|
}
|
|
'';
|
|
|
|
programs.opencode = {
|
|
enable = true;
|
|
package = inputs'.llm-agents.packages.opencode;
|
|
settings = {
|
|
model = "anthropic/claude-opus-4-6";
|
|
small_model = "anthropic/claude-haiku-4-5";
|
|
theme = "rosepine";
|
|
plugin = ["opencode-claude-auth"];
|
|
permission = {
|
|
read = {
|
|
"*" = "allow";
|
|
"*.env" = "deny";
|
|
"*.env.*" = "deny";
|
|
"*.envrc" = "deny";
|
|
"secrets/*" = "deny";
|
|
};
|
|
};
|
|
agent = {
|
|
plan = {
|
|
model = "anthropic/claude-opus-4-6";
|
|
};
|
|
explore = {
|
|
model = "anthropic/claude-haiku-4-5";
|
|
};
|
|
};
|
|
instructions = [
|
|
"CLAUDE.md"
|
|
"AGENT.md"
|
|
# "AGENTS.md"
|
|
"AGENTS.local.md"
|
|
];
|
|
formatter = {
|
|
mix = {
|
|
disabled = true;
|
|
};
|
|
};
|
|
mcp = {
|
|
opensrc = {
|
|
enabled = true;
|
|
type = "local";
|
|
command = ["opensrc-mcp"];
|
|
};
|
|
context7 = {
|
|
enabled = true;
|
|
type = "remote";
|
|
url = "https://mcp.context7.com/mcp";
|
|
};
|
|
grep_app = {
|
|
enabled = true;
|
|
type = "remote";
|
|
url = "https://mcp.grep.app";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
|
|
xdg.configFile = {
|
|
"opencode/agent" = {
|
|
source = ./_opencode/agent;
|
|
recursive = true;
|
|
};
|
|
"opencode/command" = {
|
|
source = ./_opencode/command;
|
|
recursive = true;
|
|
};
|
|
"opencode/skill" = {
|
|
source = ./_opencode/skill;
|
|
recursive = true;
|
|
};
|
|
"opencode/tool" = {
|
|
source = ./_opencode/tool;
|
|
recursive = true;
|
|
};
|
|
"opencode/plugin" = {
|
|
source = ./_opencode/plugin;
|
|
recursive = true;
|
|
};
|
|
"opencode/AGENTS.md".source = ./_opencode/AGENTS.md;
|
|
"opencode/tui.json".source = ./_opencode/tui.json;
|
|
};
|
|
};
|
|
}
|