refactor(modules/system): move system config to a module

This commit is contained in:
Mohammad Rafiq 2025-05-18 15:25:58 +08:00
parent 62f94ad85e
commit cb01ba95b0
7 changed files with 65 additions and 23 deletions

View file

@ -0,0 +1,9 @@
{ config, lib, ... }:
{
config = lib.mkMerge [
{
time.timeZone = "Asia/Singapore";
i18n.defaultLocale = "en_US.UTF-8";
}
];
}