From 433462879238867cb3b3c3dfc5375af1ae042988 Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Thu, 8 Jan 2026 17:32:05 +0000 Subject: [PATCH] fmt --- overlays/sonoscli.nix | 42 ++++++++++++++++++++++-------------------- profiles/opencode.nix | 19 ++++++++++++++++++- 2 files changed, 40 insertions(+), 21 deletions(-) diff --git a/overlays/sonoscli.nix b/overlays/sonoscli.nix index f9c2447..98fbcad 100644 --- a/overlays/sonoscli.nix +++ b/overlays/sonoscli.nix @@ -1,24 +1,26 @@ {inputs}: final: prev: { - sonoscli = prev.buildGoModule rec { - pname = "sonoscli"; - version = "0.1.0"; + sonoscli = + prev.buildGoModule rec { + pname = "sonoscli"; + version = "0.1.0"; - src = prev.fetchFromGitHub { - owner = "steipete"; - repo = "sonoscli"; - rev = "v${version}"; - hash = "sha256-9ouRJ0Rr+W5Kx9BltgW29Jo1Jq7Hb/un4XBkq+0in9o="; + src = + prev.fetchFromGitHub { + owner = "steipete"; + repo = "sonoscli"; + rev = "v${version}"; + hash = "sha256-9ouRJ0Rr+W5Kx9BltgW29Jo1Jq7Hb/un4XBkq+0in9o="; + }; + + vendorHash = "sha256-hocnLCzWN8srQcO3BMNkd2lt0m54Qe7sqAhUxVZlz1k="; + + subPackages = ["cmd/sonos"]; + + meta = with prev.lib; { + description = "Control SONOS speakers from your terminal"; + homepage = "https://github.com/steipete/sonoscli"; + license = licenses.mit; + mainProgram = "sonos"; + }; }; - - vendorHash = "sha256-hocnLCzWN8srQcO3BMNkd2lt0m54Qe7sqAhUxVZlz1k="; - - subPackages = ["cmd/sonos"]; - - meta = with prev.lib; { - description = "Control SONOS speakers from your terminal"; - homepage = "https://github.com/steipete/sonoscli"; - license = licenses.mit; - mainProgram = "sonos"; - }; - }; } diff --git a/profiles/opencode.nix b/profiles/opencode.nix index 07eba43..bf79bcf 100644 --- a/profiles/opencode.nix +++ b/profiles/opencode.nix @@ -9,7 +9,7 @@ settings = { theme = "catppuccin"; plugin = [ - "oh-my-opencode@2.14.0" + "oh-my-opencode@3.0.0-beta.2" ]; instructions = [ "CLAUDE.md" @@ -31,6 +31,15 @@ sisyphus = { model = "opencode/claude-opus-4-5"; }; + orchestrator-sisyphus = { + model = "opencode/claude-opus-4-5"; + }; + "Prometheus (Planner)" = { + model = "opencode/claude-opus-4-5"; + }; + "Metis (Plan Consultant)" = { + model = "opencode/claude-opus-4-5"; + }; explore = { model = "opencode/minimax-m2.1-free"; }; @@ -47,6 +56,14 @@ model = "opencode/gemini-3-flash"; }; }; + categories = { + visual = { + model = "opencode/gemini-3-pro"; + }; + business-logic = { + model = "opencode/gpt-5.2"; + }; + }; disabled_hooks = ["startup-toast" "background-notification" "session-notification"]; }; }