tungsten: copy config from vanadium

This commit is contained in:
Primrose 2025-04-10 21:51:15 +02:00
parent f41d27ebff
commit b17c3d9251
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA
21 changed files with 1568 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{lib, ...}: {
config = lib.mkDefault {
time.timeZone = "Europe/Paris";
i18n = {
defaultLocale = "en_US.UTF-8";
supportedLocales = [
"en_US.UTF-8/UTF-8"
"fr_FR.UTF-8/UTF-8"
"zh_TW.UTF-8/UTF-8"
];
};
};
}