claude not not like third party harnesses

This commit is contained in:
William 2026-04-08 07:52:00 -03:00
parent ee13dcaa31
commit 86f2fa2792

View file

@ -5,7 +5,7 @@
{ inputs, pkgs, ... }: { inputs, pkgs, ... }:
{ {
environment.systemPackages = environment.systemPackages =
(with pkgs; [ opencode-claude-auth ]) (with pkgs; [ ])
++ (with inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}; [ ++ (with inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}; [
ccusage-opencode ccusage-opencode
claude-code claude-code
@ -25,10 +25,7 @@
programs.opencode = { programs.opencode = {
enable = true; enable = true;
package = inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}.opencode; package = inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}.opencode;
settings = { settings.theme = "system";
theme = "system";
plugin = [ "opencode-claude-auth" ];
};
}; };
}; };
}; };