install claude and claude tools

This commit is contained in:
William 2026-04-04 18:48:45 -03:00
parent be7159fba8
commit bb96cea244

View file

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