claude not not like third party harnesses

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

View file

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