From 9d476ee209404bea0ad427a10689ab68d08126dc Mon Sep 17 00:00:00 2001 From: Christoph Schmatzler Date: Tue, 3 Feb 2026 16:53:06 +0000 Subject: [PATCH] Add claude-code profile from llm-agents input --- hosts/chidi/default.nix | 1 + hosts/jason/default.nix | 1 + hosts/tahani/default.nix | 1 + profiles/claude-code.nix | 9 +++++++++ 4 files changed, 12 insertions(+) create mode 100644 profiles/claude-code.nix diff --git a/hosts/chidi/default.nix b/hosts/chidi/default.nix index 6cf7bea..7a679ca 100644 --- a/hosts/chidi/default.nix +++ b/hosts/chidi/default.nix @@ -37,6 +37,7 @@ ../../profiles/nono.nix ../../profiles/neovim ../../profiles/opencode.nix + ../../profiles/claude-code.nix ../../profiles/ripgrep.nix ../../profiles/ssh.nix ../../profiles/starship.nix diff --git a/hosts/jason/default.nix b/hosts/jason/default.nix index aefb38e..61b7f15 100644 --- a/hosts/jason/default.nix +++ b/hosts/jason/default.nix @@ -36,6 +36,7 @@ ../../profiles/nono.nix ../../profiles/neovim ../../profiles/opencode.nix + ../../profiles/claude-code.nix ../../profiles/ripgrep.nix ../../profiles/ssh.nix ../../profiles/starship.nix diff --git a/hosts/tahani/default.nix b/hosts/tahani/default.nix index 4db3aa5..368f2bb 100644 --- a/hosts/tahani/default.nix +++ b/hosts/tahani/default.nix @@ -37,6 +37,7 @@ ../../profiles/nono.nix ../../profiles/neovim ../../profiles/opencode.nix + ../../profiles/claude-code.nix ../../profiles/ripgrep.nix ../../profiles/ssh.nix ../../profiles/starship.nix diff --git a/profiles/claude-code.nix b/profiles/claude-code.nix new file mode 100644 index 0000000..75678ab --- /dev/null +++ b/profiles/claude-code.nix @@ -0,0 +1,9 @@ +{ + inputs, + pkgs, + ... +}: { + home.packages = [ + inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.claude-code + ]; +}