mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 00:33:00 +00:00
10 lines
238 B
Nix
10 lines
238 B
Nix
{...}: {
|
|
programs.zsh = {
|
|
enable = true;
|
|
histFile = "$XDG_DATA_HOME/zsh/history";
|
|
enableCompletion = true;
|
|
zsh-autoenv.enable = true;
|
|
autosuggestions.enable = true;
|
|
};
|
|
environment.pathsToLink = ["/share/zsh"];
|
|
}
|