From 9a9367aa559878154037e9f8fa47cdda300d34d6 Mon Sep 17 00:00:00 2001 From: Joinemm Date: Tue, 28 May 2024 22:09:22 +0300 Subject: [PATCH] Use Finnish locale --- modules/locale.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/modules/locale.nix b/modules/locale.nix index 32f08f2..b634ff6 100644 --- a/modules/locale.nix +++ b/modules/locale.nix @@ -1,6 +1,12 @@ { time.timeZone = "Europe/Helsinki"; - i18n.defaultLocale = "en_US.UTF-8"; + + i18n = { + defaultLocale = "fi_FI.UTF-8"; + extraLocaleSettings = { + LC_MESSAGES = "en_US.UTF-8"; + }; + }; location.provider = "geoclue2"; services.geoclue2.enable = true;