From 80f525cdb69a366a86eddeec28a6515442770676 Mon Sep 17 00:00:00 2001 From: ahwx Date: Sat, 21 Feb 2026 23:22:09 +0100 Subject: [PATCH] feat: adds i18n to its own module --- modules/core/i18n.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 modules/core/i18n.nix diff --git a/modules/core/i18n.nix b/modules/core/i18n.nix new file mode 100644 index 0000000..5bc69f8 --- /dev/null +++ b/modules/core/i18n.nix @@ -0,0 +1,7 @@ +{ + i18n.defaultLocale = "en_US.UTF-8"; + i18n.supportedLocales = [ + "en_US.UTF-8/UTF-8" + "ja_JP.UTF-8/UTF-8" + ]; +}