20 lines
366 B
Nix
20 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;
|
||
|
};
|
||
|
};
|
||
|
}
|