diff options
-rw-r--r-- | nixos/profiles/workstation/dev.nix | 1 | ||||
-rw-r--r-- | user/zsh/zshrc-workstation.sh | 2 |
2 files changed, 3 insertions, 0 deletions
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() { |