nixos-config/config/programs/zsh.nix

21 lines
428 B
Nix
Raw Normal View History

desktop: _: {
2022-01-15 16:09:02 +01:00
programs = {
zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
2023-09-08 12:39:34 +01:00
syntaxHighlighting.enable = true;
enableVteIntegration = desktop;
2022-01-15 16:09:02 +01:00
autocd = true;
2023-11-18 10:53:21 +01:00
loginExtra =
if desktop
then ''
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty1" ]]; then
exec sway
fi
''
else "";
2022-01-15 16:09:02 +01:00
};
};
}