pantheon/users/modules/programs/zsh.nix
2025-03-18 02:40:09 +08:00

14 lines
344 B
Nix

{
programs.zsh = {
enable = true;
enableCompletion = true;
enableVteIntegration = true;
# TODO: Look into whether we need to add the history attribute
profileExtra = # bash
''
if [ -z "$WAYLAND_DISPLAY" ] && [ "$XDG_VTNR" -eq 1 ]; then
dbus-run-session Hyprland
fi
'';
};
}