From 66cc2a39588dbae82aeb776bd7df2091665acdc6 Mon Sep 17 00:00:00 2001 From: Hadi <112569860+anotherhadi@users.noreply.github.com> Date: Fri, 10 Apr 2026 22:57:09 +0200 Subject: [PATCH] add colors Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com> --- home/programs/shell/zsh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home/programs/shell/zsh.nix b/home/programs/shell/zsh.nix index 2f2b31a..1680f0f 100644 --- a/home/programs/shell/zsh.nix +++ b/home/programs/shell/zsh.nix @@ -12,6 +12,10 @@ in { # Add go binaries to the PATH home.sessionPath = ["$HOME/go/bin"]; + home.sessionVariables = { + COLORTERM = "truecolor"; + }; + programs.zsh = { enable = true; enableCompletion = true;