mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2025-10-10 00:31:54 +05:30
21 lines
385 B
Nix
21 lines
385 B
Nix
{
|
|
programs.opencode = {
|
|
enable = true;
|
|
settings = {
|
|
theme = "system";
|
|
provider = {
|
|
google = {
|
|
options = {
|
|
apiKey = "{file:/run/secrets/gemini_api_key}";
|
|
};
|
|
};
|
|
openrouter = {
|
|
options = {
|
|
apiKey = "{file:/run/secrets/open_router_api_key}";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|