From 886cc1fd97a68e7a62684b8de88e215c2f9c79c5 Mon Sep 17 00:00:00 2001 From: NullBite Date: Sat, 30 Dec 2023 11:59:42 -0500 Subject: [PATCH] Fix locale settings --- fragments/base.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/fragments/base.nix b/fragments/base.nix index 7ba414d..46447b8 100644 --- a/fragments/base.nix +++ b/fragments/base.nix @@ -1,5 +1,13 @@ { config, lib, pkgs, ...}: { + # locale settings + i18n = { + defaultLocale = "en_US.UTF-8"; + extraLocaleSettings = { + LC_ALL = "en_US.UTF-8"; + }; + }; + # Enable flakes nix.settings.experimental-features = ["nix-command" "flakes" ];