From 0e50839ce057ea040a1565ad6d8e1dfa3fe9e3c1 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Tue, 7 Apr 2026 09:01:13 +0000 Subject: [PATCH] up --- modules/_opencode/tui.json | 4 ---- modules/ai-tools.nix | 6 ++++-- 2 files changed, 4 insertions(+), 6 deletions(-) delete mode 100644 modules/_opencode/tui.json diff --git a/modules/_opencode/tui.json b/modules/_opencode/tui.json deleted file mode 100644 index 971cbee..0000000 --- a/modules/_opencode/tui.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "$schema": "https://opencode.ai/tui.json", - "plugin": ["./plugin/review.ts"] -} diff --git a/modules/ai-tools.nix b/modules/ai-tools.nix index f4d45c7..0c66c05 100644 --- a/modules/ai-tools.nix +++ b/modules/ai-tools.nix @@ -24,10 +24,13 @@ in { programs.opencode = { enable = true; package = inputs'.llm-agents.packages.opencode; + tui = { + theme = "rosepine"; + plugin = ["./plugin/review.ts"]; + }; settings = { model = "openai/gpt-5.4"; small_model = "openai/gpt-5.1-codex-mini"; - theme = "rosepine"; plugin = [ "opencode-claude-auth" ]; @@ -177,7 +180,6 @@ in { recursive = true; }; "opencode/AGENTS.md".source = ./_opencode/AGENTS.md; - "opencode/tui.json".source = ./_opencode/tui.json; }; }; }