nixos-configuration/modules/localization.nix
2021-11-17 16:08:19 +00:00

19 lines
244 B
Nix

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