nixos-config/hosts/zsh.nix

12 lines
213 B
Nix
Raw Normal View History

2024-12-30 18:06:16 -05:00
{ pkgs, ... }:
{
users.users.yt = {
isNormalUser = true;
shell = pkgs.zsh;
};
programs.zsh.enable = true;
# needed for zsh.enableCompletion to work
environment.pathsToLink = [ "/share/zsh" ];
}