nix-config/hosts/modules/ai.nix
2025-12-16 10:37:28 -03:00

11 lines
210 B
Nix

{ inputs, pkgs, ... }:
{
environment.systemPackages =
(with pkgs; [claude-desktop]) ++
(with inputs.nix-ai-tools.packages.${pkgs.system}; [
claude-code
claudebox
opencode
]);
}