server/system/zsh.nix
2024-10-07 15:32:17 +01:00

11 lines
181 B
Nix
Executable File

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