From 6c48ae3714a52827db60176a69e6b806cb05c675 Mon Sep 17 00:00:00 2001 From: Jakub Stachurski Date: Wed, 11 Feb 2026 16:20:48 +0100 Subject: Upgrade ZSH app in home-modules --- home-modules/apps/zsh.nix | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) diff --git a/home-modules/apps/zsh.nix b/home-modules/apps/zsh.nix index 9a7c84d..5fca2ea 100644 --- a/home-modules/apps/zsh.nix +++ b/home-modules/apps/zsh.nix @@ -2,6 +2,7 @@ config, pkgs, lib, + hostconfig, ... }: { @@ -10,13 +11,24 @@ }; config = lib.mkIf config.homeapps.zsh.enable { - programs.zsh = { enable = true; enableCompletion = true; + syntaxHighlighting.enable = true; + autosuggestion.enable =true; oh-my-zsh = { enable = true; - theme = "clean"; + theme = "dst"; + plugins = [ + "kitty" + "rust" + "screen" + "systemd" + "tmux" + "nmap" + "npm" + "ssh" + ]; }; plugins = [ { -- cgit v1.3.1