fix timezone

This commit is contained in:
2026-01-13 18:47:39 +00:00
parent 8c84cfe27e
commit 3c4adf7dff
2 changed files with 36 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,8 @@
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 = {
# Default model for opencode sessions
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 +30,13 @@
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 +56,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 +76,37 @@
}; };
}; };
categories = { categories = {
general = { # Matches oh-my-opencode built-in categories
"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";
};
# Back-compat / short names you might use manually
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"];
}; };
} }