From 3705235b24cc13e03d79bc640deab330eae702c2 Mon Sep 17 00:00:00 2001 From: Rien Maertens Date: Thu, 18 Mar 2021 10:41:42 +0100 Subject: [PATCH] Fix shell.nix for a pure shell --- shell.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index d99d963..6ea2464 100644 --- a/shell.nix +++ b/shell.nix @@ -2,6 +2,9 @@ let pkgs = import {}; in with pkgs; mkShell { nativeBuildInputs = [ - ruby bundler libxml2 nodejs yarn + ruby bundler libxml2 nodejs yarn cacert git glibcLocales ]; + shellHook = '' + export LANG=en_US.UTF-8 + ''; }