From d0e5fb3fd2284412686059ed50545374eeb97540 Mon Sep 17 00:00:00 2001 From: Doron Behar Date: Sun, 9 Nov 2025 11:14:11 +0200 Subject: [PATCH] nixosTests.i18n: Add tests of the C locale --- nixos/tests/i18n.nix | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/nixos/tests/i18n.nix b/nixos/tests/i18n.nix index a0493b7c62f5..910320a2d41e 100644 --- a/nixos/tests/i18n.nix +++ b/nixos/tests/i18n.nix @@ -38,6 +38,21 @@ }; }; }; + Csimple = { + i18n = { + defaultLocale = "C"; + }; + }; + CnonDefault = { + i18n = { + defaultLocale = "en_US.UTF-8"; + extraLocaleSettings = { + LC_COLLATE = "C"; + LC_MESSAGES = "C"; + LC_TIME = "C"; + }; + }; + }; }; testScript = { nodes, ... }: ""; }