From be4553046c151c048cc4bac3bf45f310b32ee5c3 Mon Sep 17 00:00:00 2001 From: William Date: Thu, 19 Feb 2026 09:02:16 -0300 Subject: [PATCH] nix-ai-tools not that up to date --- aspects/ai.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/aspects/ai.nix b/aspects/ai.nix index e3016e6..99efd60 100644 --- a/aspects/ai.nix +++ b/aspects/ai.nix @@ -4,11 +4,8 @@ { inputs, pkgs, ... }: { environment.systemPackages = - (with pkgs; [ ]) + (with pkgs; [ opencode ]) ++ (with inputs.nix-ai-tools.packages.${pkgs.stdenv.hostPlatform.system}; [ - claude-code - claudebox - opencode ]); }; }