9 lines
137 B
Nix
9 lines
137 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
programs.zsh = {
|
||
|
enable = true;
|
||
|
enableCompletion = true;
|
||
|
initExtra = builtins.readFile ./init-extra.zsh;
|
||
|
};
|
||
|
}
|