Skip to content

Commit e1c3487

Browse files
committed
feat: replace nix-ai with llm-agents for claude-code and gemini-cli packages
1 parent 00e4853 commit e1c3487

File tree

3 files changed

+51
-48
lines changed

3 files changed

+51
-48
lines changed

flake.lock

Lines changed: 45 additions & 45 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@
121121
inputs.nixpkgs.follows = "nixpkgs";
122122
};
123123

124-
nix-ai = {
125-
url = "github:numtide/nix-ai-tools";
124+
llm-agents = {
125+
url = "github:numtide/llm-agents.nix";
126126
inputs.nixpkgs.follows = "nixpkgs";
127127
};
128128

modules/home/common/claude/default.nix

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,8 @@
1212
imports = lib.fs.scanPaths ./.;
1313

1414
# Install claude-code package
15-
home.packages = [ inputs.nix-ai.packages.${pkgs.stdenv.hostPlatform.system}.claude-code ];
15+
home.packages = [
16+
inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.claude-code
17+
inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.gemini-cli
18+
];
1619
}

0 commit comments

Comments
 (0)