{ pkgs, ... }: { home.packages = with pkgs; [ go-tools # collection of tools, https://github.com/dominikh/go-tools golangci-lint gopls ]; programs.go = { enable = true; goPath = ".local/share/pkg.go"; goBin = ".local/bin.go"; goPrivate = [ "github.rbx.com/*" "github.com/fcuny/*" ]; }; }