From ed49dac1cd3790c8ff69f1222fa94aa280489e72 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Tue, 14 Apr 2026 21:47:28 -0400 Subject: [PATCH] unnerf opus really --- modules/home/claude-code/default.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/modules/home/claude-code/default.nix b/modules/home/claude-code/default.nix index 993ae77..9754fe0 100644 --- a/modules/home/claude-code/default.nix +++ b/modules/home/claude-code/default.nix @@ -1,7 +1,8 @@ -{ pkgs, ... }: +{ flake, pkgs, ... }: { - home.packages = with pkgs; [ - tree + home.packages = [ + flake.inputs.llm-agents.packages.${pkgs.stdenv.hostPlatform.system}.claude-code + pkgs.tree ]; home.file.".claude/settings.json" = { @@ -15,11 +16,9 @@ # See: https://x.com/kunchenguid/status/2043720881990725868 effortLevel = "high"; env = { - # CLAUDE_CODE_DISABLE_1M_CONTEXT = "1"; CLAUDE_CODE_NO_FLICKER = "1"; CLAUDE_CODE_DISABLE_ADAPTIVE_THINKING = "1"; CLAUDE_CODE_DISABLE_AUTO_MEMORY = "1"; - CLAUDE_SUBAGENT_MODEL = "sonnet"; }; }; };