From f0b2aee54e82c12e8c146d5ebe89828b126e0ba9 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 1 Dec 2022 08:47:36 +0800 Subject: [PATCH] profiles/server: fix `i18n.supportedLocales` --- modules/nixos/profiles/server.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/nixos/profiles/server.nix b/modules/nixos/profiles/server.nix index a1697690..7c15c44a 100644 --- a/modules/nixos/profiles/server.nix +++ b/modules/nixos/profiles/server.nix @@ -44,7 +44,7 @@ in # We're only going to deal with servers in English. i18n.defaultLocale = "en_US.UTF-8"; - i18n.supportedLocales = [ config.i18n.defaultLocale ]; + i18n.supportedLocales = [ "en_US.UTF-8/UTF-8" ]; }) # We're only covering the most basic settings here.