From aaf44b8848fc96dd1283aa66fcc52989a46814c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=9C=BF=20corey?= Date: Fri, 4 Sep 2026 10:28:49 -0700 Subject: [PATCH] feat(lobtop): source lob shell-integration.zsh Wires up ~/Development/lob/shell-integration.zsh from the lobtop zshrc so wrapper functions like nomad-login are available. Entire-Checkpoint: 01d6f42dc5cc --- hosts/lobtop/home.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/lobtop/home.nix b/hosts/lobtop/home.nix index 9f51db32..c15728a5 100644 --- a/hosts/lobtop/home.nix +++ b/hosts/lobtop/home.nix @@ -27,5 +27,8 @@ programs.zsh.initContent = '' export OTEL_EXPORTER_OTLP_HEADERS="Authorization=Bearer $(cat ${config.age.secrets.otel-token.path})" + if [[ -f "${config.home.homeDirectory}/Development/lob/shell-integration.zsh" ]]; then + source ${config.home.homeDirectory}/Development/lob/shell-integration.zsh + fi ''; }