10 lines
192 B
Nix
10 lines
192 B
Nix
{...}: {
|
|
programs = {
|
|
zsh = {
|
|
enable = true;
|
|
autosuggestions.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
};
|
|
};
|
|
environment.pathsToLink = ["/share/zsh"];
|
|
}
|