7 lines
156 B
Nix
7 lines
156 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.zsh.enable = true;
|
|
programs.zsh.initExtra = ''
|
|
source <(${pkgs.any-nix-shell}/bin/any-nix-shell zsh --info-right)
|
|
'';
|
|
}
|