From b290a449da887bfae46b5b36bb5e8f7a6df88789 Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sun, 12 Jan 2025 17:22:27 +0100 Subject: [PATCH] feat: adds japanese as a locale so that things display correctly hopefully --- modules/core/system.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/core/system.nix b/modules/core/system.nix index c8fc8d3..7f26ee4 100644 --- a/modules/core/system.nix +++ b/modules/core/system.nix @@ -38,5 +38,9 @@ time.timeZone = "Europe/Amsterdam"; i18n.defaultLocale = "en_US.UTF-8"; + i18n.supportedLocales = [ + "en_US.UTF-8/UTF-8" + "ja_JP.UTF-8/UTF-8" + ]; system.stateVersion = "24.05"; }