From b8a207d8555dc91ea53edcce0b6cf222df3afef5 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Thu, 16 May 2024 11:19:00 -0300 Subject: [PATCH] Added en_CA locale --- modules/system.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/modules/system.nix b/modules/system.nix index f80377c..5a49edb 100644 --- a/modules/system.nix +++ b/modules/system.nix @@ -13,6 +13,14 @@ ]; }; + # Locales + i18n.supportedLocales = [ + "C.UTF-8/UTF-8" + "en_CA.UTF-8/UTF-8" + "en_US.UTF-8/UTF-8" + "fr_CA.UTF-8/UTF-8" + ]; + # Enable CUPS to print documents. services.printing.enable = true;