nixos-configuration/modules/localization.nix
2023-05-26 15:37:04 +00:00

19 lines
243 B
Nix

{
i18n = {
defaultLocale = "en_GB.UTF-8";
extraLocaleSettings = {
LC_MONETARY = "de_DE.UTF-8";
};
};
console.keyMap = "de";
time.timeZone = "UTC";
location = {
latitude = 49.5;
longitude = 10.5;
};
}