From 868cedec52ce99acaa35ceea5484439f06f3e857 Mon Sep 17 00:00:00 2001 From: Avery Date: Fri, 11 Oct 2024 21:12:25 +0200 Subject: [PATCH] Add Japanese to supported system locales --- hosts/totsugeki/nixos/default.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/hosts/totsugeki/nixos/default.nix b/hosts/totsugeki/nixos/default.nix index 0e7fafc..af3dde6 100644 --- a/hosts/totsugeki/nixos/default.nix +++ b/hosts/totsugeki/nixos/default.nix @@ -43,6 +43,15 @@ }; i18n.defaultLocale = "es_ES.UTF-8"; + i18n = { + defaultLocale = "es_ES.UTF-8"; + supportedLocales = [ + "C.UTF-8/UTF-8" + "en_US.UTF-8/UTF-8" + "es_ES.UTF-8/UTF-8" + "ja_JP.UTF-8/UTF-8" # Monster Hunter Frontier Z Zenith + ]; + }; nixpkgs.config.allowUnfree = true;