refactor: simplify host config

This commit is contained in:
2026-04-05 16:01:08 +02:00
parent 2929a10d62
commit 0b79904103
8 changed files with 34 additions and 14 deletions

View File

@@ -1,4 +1,6 @@
{ config, ... }:
{
time.timeZone = "Europe/Brussels";
i18n.defaultLocale = "en_US.UTF-8";
time.timeZone = config.host.timezone;
i18n.defaultLocale = config.host.locale;
}