From b246c9c1ecd57b142254ca919b8a16783cfc0996 Mon Sep 17 00:00:00 2001 From: Alexander Heldt Date: Sat, 8 Nov 2025 23:13:04 +0100 Subject: [PATCH] pinwheel: Fix `GOPATH` for `go` --- hosts/pinwheel/modules/go/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/pinwheel/modules/go/default.nix b/hosts/pinwheel/modules/go/default.nix index 2d5857b..bd521a0 100644 --- a/hosts/pinwheel/modules/go/default.nix +++ b/hosts/pinwheel/modules/go/default.nix @@ -21,7 +21,7 @@ in package = pkgs.go; env = { - GOPATH = "code/go"; + GOPATH = "/home/alex/code/go"; }; };