9 lines
255 B
Nix
9 lines
255 B
Nix
{ pkgs, ... }: {
|
|
programs.zsh.enable = true;
|
|
programs.zsh.enableCompletion = true;
|
|
programs.zsh.enableGlobalCompInit = false;
|
|
programs.zsh.interactiveShellInit = ''
|
|
source ${pkgs.zsh-nix-shell}/share/zsh-nix-shell/nix-shell.plugin.zsh
|
|
'';
|
|
}
|