nixos-config/config/programs/zsh.nix
2023-01-06 11:54:13 +01:00

17 lines
395 B
Nix

desktop: _: {
programs = {
zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableSyntaxHighlighting = true;
enableVteIntegration = desktop;
autocd = true;
loginExtra = if desktop then ''
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty1" ]]; then
exec sway
fi
'' else "";
};
};
}