dotfiles-nix/nix/programs/zsh/default.nix
2025-01-23 09:26:51 -05:00

19 lines
366 B
Nix

{ 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;
};
};
}