nixosTests.i18n: Add tests of the C locale

This commit is contained in:
Doron Behar
2026-01-18 15:09:37 +02:00
parent a097c89d37
commit d0e5fb3fd2
+15
View File
@@ -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, ... }: "";
}