{ config, ... }: { programs.zsh = { enable = true; enableCompletion = true; enableGlobalCompInit = false; autosuggestions.enable = true; syntaxHighlighting.enable = true; histSize = 10000; }; home-manager.users.${config.user} = { home.file = { ".zshrc".source = ./zshrc; ".zprofile".source = ./zprofile; }; }; }