From b3bc39cc5115377be7f2f3fe6f0ade7a3bf0d434 Mon Sep 17 00:00:00 2001 From: "m@yim.jp" Date: Tue, 3 Feb 2026 02:13:02 +0000 Subject: [PATCH] chore(nix): set GOROOT to prevent system Go mismatch Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-opencode) Co-authored-by: Sisyphus --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index fa0ca26..9f0c552 100644 --- a/flake.nix +++ b/flake.nix @@ -17,6 +17,8 @@ golangci-lint ]; + env.GOROOT = "${pkgs.go_1_25}/share/go"; + shellHook = '' echo "claws dev env - Go $(go version | cut -d' ' -f3)" '';