{ config, pkgs, lib, ... }: { home.packages = [ pkgs.zsh (lib.lowPrio pkgs.zsh-completions) ]; programs.zsh = { enable = true; enableCompletion = true; enableVteIntegration = true; dotDir = ".config/zsh"; history = { path = "${config.xdg.dataHome}/zsh/zsh_history"; save = 100000000; size = 1000000000; expireDuplicatesFirst = true; ignoreDups = true; share = true; }; oh-my-zsh = { enable = true; plugins = [ "git" "gitfast" "sudo" "systemd" ]; extraConfig = '' zstyle ':completion:*' menu select ''; }; }; }