From 6ebfb3d109178f1332ac8492a515fdc9c940c3ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20B=C3=B6hme?= Date: Sun, 23 Feb 2025 18:26:27 +0100 Subject: [PATCH] feat: add anthropic api key --- modules/programs/aider.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/aider.nix b/modules/programs/aider.nix index 06f4464..dd1abea 100644 --- a/modules/programs/aider.nix +++ b/modules/programs/aider.nix @@ -11,7 +11,7 @@ let wrapped = pkgs.writeShellApplication { name = "aider"; text = '' - aider --openai-api-key "$(cat /run/agenix/openai)" --no-attribute-author --no-attribute-committer "$@" + aider --openai-api-key "$(cat /run/agenix/openai)" --anthropic-api-key "$(cat /run/agenix/anthropic)" --no-attribute-author --no-attribute-committer "$@" ''; runtimeInputs = [ cfg.package ]; };