summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2025-03-31 07:28:42 +0200
committerMartin Fischer <martin@push-f.com>2025-03-31 07:53:50 +0200
commit25f131e3977097355b6461cfa63b1d5d81b9a4c2 (patch)
tree821b6c19b26835790d0f8732440a532814bda685
parentfe7056df72ec279c0da1c97307eb75c3c35e3bfc (diff)
feat(workstation): add Go
-rw-r--r--nixos/profiles/workstation/dev.nix1
-rw-r--r--user/zsh/zshrc-workstation.sh2
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() {