nixos-config-priv/systems/common/core/zsh.nix

12 lines
265 B
Nix

#
# This is a basic enablement of zsh at the host level as a safe guard
# in case enabling zsh as a home-manager module (see /home/ta/core/cli)
# at the user level fails for some reason.
#
{
programs.zsh = {
enable = true;
enableCompletion = true;
};
}