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