big refactor by claude

This commit is contained in:
2026-04-17 21:06:18 +03:00
parent 6d7433cf1e
commit 6ac7e05813
5 changed files with 161 additions and 196 deletions
+11
View File
@@ -0,0 +1,11 @@
{ pkgs, ... }:
{
programs.zsh = {
enable = true;
enableCompletion = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
promptInit = "source ${pkgs.zsh-powerlevel10k}/share/zsh-powerlevel10k/powerlevel10k.zsh-theme";
};
}