Compare commits

...

2 Commits

Author SHA1 Message Date
9b284ee9d2 fix opencode 2026-01-13 18:53:37 +00:00
3c4adf7dff fix timezone 2026-01-13 18:53:37 +00:00
2 changed files with 32 additions and 4 deletions

View File

@@ -6,6 +6,8 @@
programs.khal = { programs.khal = {
enable = true; enable = true;
locale = { locale = {
local_timezone = "Europe/Berlin";
default_timezone = "Europe/Berlin";
timeformat = "%H:%M"; timeformat = "%H:%M";
dateformat = "%d/%m/%Y"; dateformat = "%d/%m/%Y";
longdateformat = "%d/%m/%Y"; longdateformat = "%d/%m/%Y";
@@ -16,7 +18,6 @@
accounts.calendar = { accounts.calendar = {
basePath = ".local/share/calendars"; basePath = ".local/share/calendars";
accounts.icloud = { accounts.icloud = {
primary = true; primary = true;
primaryCollection = "home"; primaryCollection = "home";

View File

@@ -7,6 +7,7 @@
enable = true; enable = true;
package = inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.opencode; package = inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.opencode;
settings = { settings = {
model = "opencode/claude-opus-4-5";
theme = "catppuccin"; theme = "catppuccin";
plugin = [ plugin = [
"oh-my-opencode@3.0.0-beta.5" "oh-my-opencode@3.0.0-beta.5"
@@ -28,6 +29,12 @@
builtins.toJSON { builtins.toJSON {
google_auth = false; google_auth = false;
agents = { agents = {
Sisyphus = {
model = "opencode/claude-opus-4-5";
};
"Sisyphus-Junior" = {
model = "opencode/claude-sonnet-4-5";
};
sisyphus = { sisyphus = {
model = "opencode/claude-opus-4-5"; model = "opencode/claude-opus-4-5";
}; };
@@ -47,8 +54,9 @@
model = "opencode/gpt-5.2"; model = "opencode/gpt-5.2";
}; };
librarian = { librarian = {
model = "opencode/claude-sonnet-4-5"; model = "opencode/glm-4.7-free";
}; };
explore = { explore = {
model = "opencode/minimax-m2.1-free"; model = "opencode/minimax-m2.1-free";
}; };
@@ -66,16 +74,35 @@
}; };
}; };
categories = { categories = {
general = { "visual-engineering" = {
model = "opencode/gemini-3-pro";
};
ultrabrain = {
model = "opencode/gpt-5.2";
};
artistry = {
model = "opencode/gemini-3-pro";
};
quick = {
model = "opencode/claude-haiku-4-5";
};
"most-capable" = {
model = "opencode/claude-opus-4-5"; model = "opencode/claude-opus-4-5";
}; };
writing = {
model = "opencode/gemini-3-flash";
};
general = {
model = "opencode/claude-sonnet-4-5";
};
visual = { visual = {
model = "opencode/gemini-3-pro"; model = "opencode/gemini-3-pro";
}; };
business-logic = { "business-logic" = {
model = "opencode/gpt-5.2"; model = "opencode/gpt-5.2";
}; };
}; };
disabled_hooks = ["startup-toast" "background-notification" "session-notification"]; disabled_hooks = ["startup-toast" "background-notification" "session-notification"];
}; };
} }