diff options
author | EuAndreh <eu@euandre.org> | 2018-07-19 13:08:33 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-19 13:08:33 -0300 |
commit | d1c6ba2501e1ae3e5c7346b27131a6a46021da9c (patch) | |
tree | 91b36e47a012267259e4f7150d17f49d0d1f8f57 | |
parent | Add c-c++ Spacemacs layer (diff) | |
download | dotfiles-d1c6ba2501e1ae3e5c7346b27131a6a46021da9c.tar.gz dotfiles-d1c6ba2501e1ae3e5c7346b27131a6a46021da9c.tar.xz |
Add go package and env vars
-rw-r--r-- | bash/env.sh | 8 | ||||
-rw-r--r-- | nixos/configuration.nix | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/bash/env.sh b/bash/env.sh index 2059261..238e770 100644 --- a/bash/env.sh +++ b/bash/env.sh @@ -69,3 +69,11 @@ isLinux && { export PATH="$HOME/.guix-profile/bin${PATH:+:}$PATH" export PATH="$HOME/.config/guix/current/bin${PATH:+:}$PATH" export GUIX_LOCPATH="$HOME/.guix-profile/lib/locale" # after running guix package -i glibc-utf8-locales + + +# +# Go +# + +export GOPATH="$HOME/dev/go" +export PATH="$GOPATH/bin:$PATH" diff --git a/nixos/configuration.nix b/nixos/configuration.nix index ba3aca4..b32122a 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -202,6 +202,7 @@ clojure # =clj= visualvm # JVM profiling tool maven + go_bootstrap ## xmonad |