14 lines
344 B
Nix
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
|
|
'';
|
|
};
|
|
}
|