15 lines
166 B
Nix
Raw Normal View History

2024-07-19 14:00:55 +02:00
{
lib,
config,
pkgs,
...
}:
2024-07-18 13:48:49 +02:00
{
config = {
time.timeZone = "Europe/Amsterdam";
i18n.defaultLocale = "en_US.UTF-8";
console.keyMap = "us";
};
2024-07-19 14:00:55 +02:00
}