diff --git a/home/apps/zsh.nix b/home/apps/zsh.nix index f499331..7562c38 100644 --- a/home/apps/zsh.nix +++ b/home/apps/zsh.nix @@ -1,6 +1,7 @@ { config, flakePath, + lib, pkgs, ... }: let @@ -113,14 +114,19 @@ in { dotDir = ".config/zsh"; oh-my-zsh = { enable = true; - plugins = [ - "colored-man-pages" - "colorize" - "docker" - "docker-compose" - "git" - "kubectl" - ]; + plugins = + [ + "colored-man-pages" + "colorize" + "docker" + "docker-compose" + "git" + "kubectl" + ] + ++ lib.optionals pkgs.stdenv.isDarwin [ + "dash" + "macos" + ]; }; plugins = with pkgs; (zshPlugins [ {