Add initial config

Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
2024-06-13 01:31:33 +03:00
parent 45e6e7fc21
commit 1b34ac63ff
25 changed files with 804 additions and 91 deletions

View File

@@ -0,0 +1,15 @@
{
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
'';
};
}