fmt
This commit is contained in:
@@ -1,24 +1,26 @@
|
|||||||
{inputs}: final: prev: {
|
{inputs}: final: prev: {
|
||||||
sonoscli = prev.buildGoModule rec {
|
sonoscli =
|
||||||
pname = "sonoscli";
|
prev.buildGoModule rec {
|
||||||
version = "0.1.0";
|
pname = "sonoscli";
|
||||||
|
version = "0.1.0";
|
||||||
|
|
||||||
src = prev.fetchFromGitHub {
|
src =
|
||||||
owner = "steipete";
|
prev.fetchFromGitHub {
|
||||||
repo = "sonoscli";
|
owner = "steipete";
|
||||||
rev = "v${version}";
|
repo = "sonoscli";
|
||||||
hash = "sha256-9ouRJ0Rr+W5Kx9BltgW29Jo1Jq7Hb/un4XBkq+0in9o=";
|
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";
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,7 +9,7 @@
|
|||||||
settings = {
|
settings = {
|
||||||
theme = "catppuccin";
|
theme = "catppuccin";
|
||||||
plugin = [
|
plugin = [
|
||||||
"oh-my-opencode@2.14.0"
|
"oh-my-opencode@3.0.0-beta.2"
|
||||||
];
|
];
|
||||||
instructions = [
|
instructions = [
|
||||||
"CLAUDE.md"
|
"CLAUDE.md"
|
||||||
@@ -31,6 +31,15 @@
|
|||||||
sisyphus = {
|
sisyphus = {
|
||||||
model = "opencode/claude-opus-4-5";
|
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 = {
|
explore = {
|
||||||
model = "opencode/minimax-m2.1-free";
|
model = "opencode/minimax-m2.1-free";
|
||||||
};
|
};
|
||||||
@@ -47,6 +56,14 @@
|
|||||||
model = "opencode/gemini-3-flash";
|
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"];
|
disabled_hooks = ["startup-toast" "background-notification" "session-notification"];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user