From c7eb6e933b8c7df6357c85e1495174fa8102e6aa Mon Sep 17 00:00:00 2001 From: willemml Date: Thu, 9 Feb 2023 12:37:27 -0800 Subject: [PATCH] set LC_ALL in system --- system/common.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/system/common.nix b/system/common.nix index 3d0b528..c57988c 100644 --- a/system/common.nix +++ b/system/common.nix @@ -2,10 +2,11 @@ { environment.systemPackages = [ pkgs.coreutils-full ]; - environment.variables.SHELL = "${pkgs.zsh}/bin/zsh"; - environment.variables.LANGUAGE = "en_US.UTF-8"; - environment.variables.LC_CTYPE = "en_US.UTF-8"; environment.variables.LANG = "en_US.UTF-8"; + environment.variables.LANGUAGE = "en_US.UTF-8"; + environment.variables.LC_ALL = "en_US.UTF-8"; + environment.variables.LC_CTYPE = "en_US.UTF-8"; + environment.variables.SHELL = "${pkgs.zsh}/bin/zsh"; nix = { generateNixPathFromInputs = true;