From 6f38a2d2fbd0fad392ed8f00a74c442735543a79 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sat, 11 Apr 2026 10:30:39 -0400 Subject: [PATCH] claude:.. --- configurations/home/srid@zest.nix | 1 + configurations/nixos/pureintent/default.nix | 1 + modules/home/claude-code/default.nix | 10 +++++----- 3 files changed, 7 insertions(+), 5 deletions(-) diff --git a/configurations/home/srid@zest.nix b/configurations/home/srid@zest.nix index 019bc7e..eb3f2e8 100644 --- a/configurations/home/srid@zest.nix +++ b/configurations/home/srid@zest.nix @@ -10,6 +10,7 @@ in flake.inputs.self.homeModules.darwin-only "${homeMod}/gui/1password.nix" "${homeMod}/cli/controlpersist.nix" + "${homeMod}/claude-code" "${homeMod}/work/juspay.nix" diff --git a/configurations/nixos/pureintent/default.nix b/configurations/nixos/pureintent/default.nix index 04255f4..80cf556 100644 --- a/configurations/nixos/pureintent/default.nix +++ b/configurations/nixos/pureintent/default.nix @@ -19,6 +19,7 @@ in home-manager.sharedModules = [ "${homeMod}/cli/ssh-agent-forwarding.nix" "${homeMod}/cli/controlpersist.nix" + "${homeMod}/claude-code" "${homeMod}/work/juspay.nix" "${homeMod}/services/vira.nix" "${homeMod}/services/kolu.nix" diff --git a/modules/home/claude-code/default.nix b/modules/home/claude-code/default.nix index 87efe23..0123f36 100644 --- a/modules/home/claude-code/default.nix +++ b/modules/home/claude-code/default.nix @@ -11,10 +11,10 @@ programs.claude-code = { enable = true; - package = pkgs.claude-code; - - autoWire.dirs = [ - (flake.self.outPath + "/AI") - ]; + # Installed outside Nix (e.g., via npm) to get auto-updates. + # This requires disabling autoWire too, since wiring MCP servers + # needs a package to wrap. + package = null; + autoWire.enable = false; }; }