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 + ]; +}