feat: add zsh as default shell

This commit is contained in:
Mohammad Rafiq 2025-03-14 13:33:14 +08:00
parent f0a423f2f4
commit 466697be14
7 changed files with 28 additions and 6 deletions

View file

@ -0,0 +1,7 @@
{pkgs, ...}: {
programs.zsh = {
enable = true;
};
users.defaultUserShell = pkgs.zsh;
environment.pathsToLink = ["/share/zsh"]; # enables completion
}