From fdc7e241def89939b9accba846d8f73dd8eddcb4 Mon Sep 17 00:00:00 2001 From: Chandler Swift Date: Tue, 3 Feb 2026 10:13:31 -0600 Subject: [PATCH] sam: Use home-manager first-class option to install Go --- sam/configuration.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sam/configuration.nix b/sam/configuration.nix index 85523d7..9d90a25 100644 --- a/sam/configuration.nix +++ b/sam/configuration.nix @@ -131,7 +131,6 @@ clang - go go-tools gopls @@ -142,6 +141,11 @@ historyControl = [ "ignoredups" "ignorespace" ]; }; + programs.go = { + enable = true; + env.GOPATH = [ "/home/chandler/.local/share/go" ]; + }; + programs.direnv = { enable = true; enableBashIntegration = true;