From 85fa1f78d0631c26f722c143cab32ed0fc5ab853 Mon Sep 17 00:00:00 2001 From: tux Date: Tue, 1 Sep 2026 22:05:51 +0530 Subject: [PATCH] chore(zsh): configure PATH and stui shortcut --- modules/hm/shell/zsh.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/modules/hm/shell/zsh.nix b/modules/hm/shell/zsh.nix index d8d3c01..4d18909 100644 --- a/modules/hm/shell/zsh.nix +++ b/modules/hm/shell/zsh.nix @@ -21,6 +21,9 @@ bindkey "^A" vi-beginning-of-line bindkey "^E" vi-end-of-line bindkey '^R' fzf-history-widget + + PATH=$PATH:~/.cargo/bin:~/.local/bin + alias stui='systemctl-tui' ''; }; };