Remove test at home

This commit is contained in:
Martin Pander
2026-02-11 21:17:44 +01:00
parent 87dbdd522b
commit 1e7c110903
2 changed files with 4 additions and 6 deletions

View File

@@ -18,7 +18,5 @@
dot.llm = { dot.llm = {
enable = true; enable = true;
gemini-cli.enable = true; gemini-cli.enable = true;
opencode.enable = true;
opencode.enableConfig = true;
}; };
} }

View File

@@ -14,7 +14,7 @@ in
config = lib.mkIf cfg.enableConfig { config = lib.mkIf cfg.enableConfig {
# Declare the sops secret # Declare the sops secret
sops.secrets.langdock-api-key = { sops.secrets.langdock_api_key = {
# Uses defaultSopsFile from secrets.nix # Uses defaultSopsFile from secrets.nix
}; };
@@ -30,7 +30,7 @@ in
name = "Langdock OpenAI"; name = "Langdock OpenAI";
options = { options = {
baseURL = "https://api.langdock.com/openai/eu/v1"; baseURL = "https://api.langdock.com/openai/eu/v1";
apiKey = config.sops.placeholder.langdock-api-key; apiKey = config.sops.placeholder.langdock_api_key;
}; };
models = { models = {
"gpt-5.2" = { name = "GPT-5.2"; }; "gpt-5.2" = { name = "GPT-5.2"; };
@@ -41,10 +41,10 @@ in
anthropic = { anthropic = {
options = { options = {
baseURL = "https://api.langdock.com/anthropic/eu/v1"; baseURL = "https://api.langdock.com/anthropic/eu/v1";
apiKey = config.sops.placeholder.langdock-api-key; apiKey = config.sops.placeholder.langdock_api_key;
}; };
models = { models = {
"Opus 4.6" = { name = "opus-4.6-default"; }; "claude-opus-4-6-default" = { name = "Opus 4.6"; };
}; };
}; };
ollama = { ollama = {