This commit is contained in:
Matthieu Morin 2024-06-09 15:55:29 +00:00
parent 360d35308d
commit d15f55e998
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
#
# 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;
};
}