From c8f469b6d5fea439d2b348079423c9a9de95b2d4 Mon Sep 17 00:00:00 2001 From: Pedro Rey Anca Date: Thu, 24 Jul 2025 19:02:58 +0200 Subject: [PATCH] Fix ZSH config (forgot to commit this) --- modules/home/zsh.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index b10dca6..610730c 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -5,6 +5,8 @@ host, ... }: { + home.packages = with pkgs; [fzf eza git fd]; + programs.zsh = { enable = true; enableCompletion = true; @@ -15,8 +17,6 @@ plugins = ["git" "fzf"]; }; shellAliases = { - # record = "wf-recorder --audio=alsa_output.pci-0000_08_00.6.analog-stereo.monitor -f $HOME/Videos/$(date +'%Y%m%d%H%M%S_1.mp4')"; - # Utils c = "clear"; cd = "z"; @@ -71,8 +71,7 @@ # ssh s = "kitten ssh"; - ssh = "kitten ssh"; - ossh = "ssh"; + kssh = "kitten ssh"; }; };