NixFiles/systems/tau/zsh.nix
2023-05-13 21:48:48 +01:00

11 lines
181 B
Nix

{ config, pkgs, ... }:
{
programs.zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
};
users.defaultUserShell = pkgs.zsh;
}