nixos-config/config/programs/zsh.nix

20 lines
388 B
Nix
Raw Normal View History

desktop: _: {
2022-01-15 15:09:02 +00:00
programs = {
zsh = {
enable = true;
enableAutosuggestions = true;
enableCompletion = true;
enableVteIntegration = desktop;
2022-01-15 15:09:02 +00:00
autocd = true;
2024-03-31 08:50:50 +00:00
loginExtra =
if desktop
then ''
if [[ -z "$DISPLAY" ]] && [[ $(tty) = "/dev/tty1" ]]; then
exec sway
fi
''
else "";
2022-01-15 15:09:02 +00:00
};
};
}