Files
nix/user/configs/zsh.nix
Nikolaos Karaolidis df315f97d6 Refactor modules
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
2024-06-13 12:20:45 +03:00

16 lines
399 B
Nix

{
programs.zsh = {
enable = true;
autocd = true;
history.expireDuplicatesFirst = true;
historySubstringSearch.enable = true;
autosuggestion.enable = true;
syntaxHighlighting.enable = true;
loginExtra = ''
if [ -z "''${WAYLAND_DISPLAY}" ] && [ ! -z "''${XDG_VTNR}" ] && [ "''${XDG_VTNR}" -eq 1 ]; then
hyprland &> /tmp/hyprland.log
fi
'';
};
}