opencode from nix-ai-tools

This commit is contained in:
William 2026-02-23 08:32:16 -03:00
parent 84e7f6c510
commit 16908e5271

View file

@ -4,8 +4,9 @@
{ inputs, pkgs, ... }: { inputs, pkgs, ... }:
{ {
environment.systemPackages = environment.systemPackages =
(with pkgs; [ opencode ]) (with pkgs; [ ])
++ (with inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}; [ ++ (with inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}; [
opencode
]); ]);
}; };
} }