NixFiles/systems/mmacbookpro/zsh.nix

11 lines
174 B
Nix
Raw Normal View History

2023-04-02 16:03:21 +01:00
{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
enableSyntaxHighlighting = true;
enableCompletion = true;
};
environment.loginShell = pkgs.zsh;
}