NixFiles/systems/macos/zsh.nix

11 lines
174 B
Nix
Raw Permalink Normal View History

2023-12-19 19:08:55 +00:00
{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
enableSyntaxHighlighting = true;
enableCompletion = true;
};
environment.loginShell = pkgs.zsh;
}