nix-dotfiles/nixosModules/apps/shells/zsh/shell.nix

14 lines
277 B
Nix
Raw Normal View History

{ config, lib, ... }:
{
config = lib.mkIf (config.shell.defaultShell == "zsh") {
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestions.enable = true;
histFile = "$HOME/.config/zsh/history";
histSize = 2000;
};
};
}