{ config, pkgs, ... }: { home.packages = with pkgs; [ # go go-tools golangci-lint gopls delve # nix nil # nix lsp nix-direnv # integration with direnv nixfmt-rfc-style # new formatter # rust rustup ]; programs.go = { enable = true; goPath = ".local/share/pkg.go"; goBin = ".local/bin.go"; goPrivate = [ "github.rbx.com/*" "github.com/fcuny/*" ]; }; home.sessionPath = [ config.home.sessionVariables.GOBIN ]; }