From 4cffcf3f45fbf2e7ddf9223edadd2521e8f3408b Mon Sep 17 00:00:00 2001 From: Akira Komamura Date: Sat, 21 Oct 2023 20:46:35 +0900 Subject: [PATCH] elixir-phoenix: Don't set the locale environment in the devShell Even though the Erlang VM assumes UTF-8 locale settings on the host environment, developers want different locale settings depending on their own needs. Thus the locale should not be set in the devShell. --- elixir-phoenix/flake.nix | 1 - 1 file changed, 1 deletion(-) diff --git a/elixir-phoenix/flake.nix b/elixir-phoenix/flake.nix index 0d55631..be1b820 100644 --- a/elixir-phoenix/flake.nix +++ b/elixir-phoenix/flake.nix @@ -72,7 +72,6 @@ inherit (self.checks.${pkgs.system}.pre-commit-check) shellHook; - LANG = "C.UTF-8"; ERL_AFLAGS = "-kernel shell_history enabled"; }; });