dotfiles-nix/nix/programs/zsh/default.nix

20 lines
366 B
Nix
Raw Normal View History

2025-01-23 14:26:51 +00:00
{ 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;
};
};
}