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

12 lines
265 B
Nix
Raw Normal View History

2024-06-09 15:55:29 +00:00
#
# 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;
};
}