diff options
author | Ben Sima <bsima@groq.com> | 2021-01-25 08:41:21 -0800 |
---|---|---|
committer | Ben Sima <bsima@groq.com> | 2022-01-05 10:41:58 -0800 |
commit | 6f45d3c82bfbde25a112d878b46c00b962f468cd (patch) | |
tree | 474596d1161d025e4e20858c78790735dfa9d020 /lib/common.nix | |
parent | a4865d8b26277da77b5943392119922f750ad6d5 (diff) |
disable LC_ALL
Diffstat (limited to 'lib/common.nix')
-rw-r--r-- | lib/common.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/common.nix b/lib/common.nix index afbe5a1..c977cdb 100644 --- a/lib/common.nix +++ b/lib/common.nix @@ -11,7 +11,7 @@ in GPGID = gpgid; EDITOR = "vim"; LANG = locale; - LC_ALL = locale; + # LC_ALL = locale; # bash prints an error when I try to set this LANGUAGE = locale; PATH = "${homedir}/bin:${homedir}/.local/bin:$PATH"; PAGER = "less"; # "bat --theme=ansi"; |