From 58816b23562a661b79eacca0a8ca6b8c6d5ad98d Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Sun, 19 Apr 2026 10:48:07 -0500 Subject: [PATCH] variables to correct gdu output --- modules/programs/zsh.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/programs/zsh.nix b/modules/programs/zsh.nix index 32aee3f..b1bb7b3 100644 --- a/modules/programs/zsh.nix +++ b/modules/programs/zsh.nix @@ -140,7 +140,10 @@ in packages.gdu = inputs.wrappers.lib.wrapPackage { inherit pkgs; package = pkgs.gdu; - runtimeInputs = with pkgs; [ glibc ]; + env = { + LANG = "en_US.UTF-8"; + COLORTERM = "truecolor"; + }; args = [ "-x" "--si" "--collapse-path" "--mouse" "$@" ]; }; };