config/systems/laptop/zsh.nix

11 lines
166 B
Nix
Raw Permalink Normal View History

2024-09-15 12:56:25 +01:00
{ pkgs, ... }:
{
programs.zsh = {
enable = true;
enableSyntaxHighlighting = true;
enableCompletion = true;
};
environment.loginShell = pkgs.zsh;
}