nixos-config/modules/locales.nix

23 lines
378 B
Nix
Raw Normal View History

# SPDX-FileCopyrightText: 2020-2021 Simon Bruder <simon@sbruder.de>
#
# SPDX-License-Identifier: AGPL-3.0-or-later
2020-08-22 17:44:39 +02:00
{ ... }:
{
2020-12-20 17:10:22 +01:00
i18n = {
defaultLocale = "en_GB.UTF-8";
extraLocaleSettings = {
LC_MONETARY = "de_DE.UTF-8";
};
};
2020-08-22 17:44:39 +02:00
console.keyMap = "de";
time.timeZone = "Europe/Berlin";
2021-07-25 08:36:19 +02:00
location = {
latitude = 49.52;
longitude = 10.17;
};
2020-08-22 17:44:39 +02:00
}