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