From 25f131e3977097355b6461cfa63b1d5d81b9a4c2 Mon Sep 17 00:00:00 2001 From: Martin Fischer Date: Mon, 31 Mar 2025 07:28:42 +0200 Subject: feat(workstation): add Go --- nixos/profiles/workstation/dev.nix | 1 + user/zsh/zshrc-workstation.sh | 2 ++ 2 files changed, 3 insertions(+) diff --git a/nixos/profiles/workstation/dev.nix b/nixos/profiles/workstation/dev.nix index 970e453..e550a4c 100644 --- a/nixos/profiles/workstation/dev.nix +++ b/nixos/profiles/workstation/dev.nix @@ -3,6 +3,7 @@ { environment.systemPackages = with pkgs; [ rustup + go python313 nodejs_22 diff --git a/user/zsh/zshrc-workstation.sh b/user/zsh/zshrc-workstation.sh index 02c9287..e027208 100644 --- a/user/zsh/zshrc-workstation.sh +++ b/user/zsh/zshrc-workstation.sh @@ -7,9 +7,11 @@ alias tokei='tokei -s code -n commas' ## Environment variables export CARGO_HOME="$HOME/.local/share/cargo" +export GOPATH="$HOME/.local/share/go" export NPM_CONFIG_PREFIX="$HOME/.local/share/npm" path+=$CARGO_HOME/bin +path+=$GOPATH/bin path+=$NPM_CONFIG_PREFIX/bin function ssh() { -- cgit v1.2.3