{ config, pkgs, lib, user, inputs, ... }: let zshConfigDir = "${toString config.home-manager.users.${user.name}.xdg.configHome}/zsh"; in { home-manager.users.${user.name} = { programs.zsh = { enable = true; enableCompletion = true; dotDir = zshConfigDir; autosuggestion.enable = true; syntaxHighlighting.enable = true; oh-my-zsh = { enable = true; theme = ""; plugins = [ "git" "sudo" "extract" "colored-man-pages" "command-not-found" "history" "docker" "kubectl" ]; }; }; # Set Zsh options (e.g., AUTO_CD) in .zshrc xdg.configFile."zsh/.zshrc".text = lib.concatStringsSep "\n" [ "setopt AUTO_CD" "setopt CORRECT" "setopt INTERACTIVE_COMMENTS" ]; }; }