Nix flake configuration for my various machines (clients and homelab servers)
0

Configure Feed

Select the types of activity you want to include in your feed.

more models for opencode

Parthiv Krishna (May 5, 2026, 9:55 AM -0700) fbf0f372 6403229b

+25 -10
+25 -10
modules/features/apps/opencode.nix
··· 5 5 medium.reasoning_effort = "medium"; 6 6 high.reasoning_effort = "high"; 7 7 off.reasoning_effort = "none"; 8 + xhigh.reasoning_effort = "xhigh"; 8 9 }; 9 10 in 10 11 lib.custom.mkFeature { ··· 26 27 baseURL = "https://inference-api.nvidia.com/v1"; 27 28 }; 28 29 models = { 29 - "claude-opus-4.5" = { 30 - id = "aws/anthropic/claude-opus-4-5"; 31 - name = "Claude 4.5 Opus"; 30 + "claude-haiku-4.5" = { 31 + id = "aws/anthropic/claude-haiku-4-5-v1"; 32 + name = "Claude Haiku 4.5"; 33 + }; 34 + 35 + "claude-opus-4.6" = { 36 + id = "aws/anthropic/bedrock-claude-opus-4-6"; 37 + name = "Claude 4.7 Opus"; 32 38 reasoning = true; 33 39 variants = reasoningVariants; 34 40 }; 35 41 36 - "claude-sonnet-4.5" = { 37 - id = "aws/anthropic/bedrock-claude-sonnet-4-5-v1"; 38 - name = "Claude 4.5 Sonnet"; 42 + "claude-opus-4.7" = { 43 + id = "aws/anthropic/claude-opus-4-7"; 44 + name = "Claude 4.7 Opus"; 39 45 reasoning = true; 40 46 variants = reasoningVariants; 41 47 }; 42 48 43 - "claude-haiku-4.5" = { 44 - id = "aws/anthropic/claude-haiku-4-5-v1"; 45 - name = "Claude Haiku 4.5"; 49 + "claude-sonnet-4.6" = { 50 + id = "aws/anthropic/bedrock-claude-sonnet-4-6"; 51 + name = "Claude 4.6 Sonnet"; 52 + reasoning = true; 53 + variants = reasoningVariants; 46 54 }; 47 55 48 56 "gemini-3-pro" = { ··· 56 64 id = "gcp/google/gemini-3-flash-preview"; 57 65 name = "Gemini 3 Flash (preview)"; 58 66 }; 67 + 68 + "gpt-5.5" = { 69 + id = "openai/openai/gpt-5.5"; 70 + name = "GPT 5.5"; 71 + reasoning = true; 72 + variants = reasoningVariants; 73 + }; 59 74 }; 60 75 }; 61 76 }; ··· 68 83 "nvidia-internal" # inference.nvidia.com 69 84 ]; 70 85 71 - model = "nvidia-internal/claude-opus-4.5"; 86 + model = "nvidia-internal/gpt-5.5"; 72 87 small_model = "nvidia-internal/claude-haiku-4.5"; 73 88 74 89 autoupdate = false;