nixos-config/system/i18n.nix

25 lines
470 B
Nix
Raw Permalink Normal View History

2019-10-19 12:55:35 +02:00
{ config, pkgs, ... }:
{
2020-01-06 09:55:35 +01:00
console = {
font = "Lat2-Terminus16";
keyMap = "uk";
};
2019-10-19 12:55:35 +02:00
i18n = {
defaultLocale = "en_GB.UTF-8";
extraLocaleSettings = {
2020-05-22 18:21:12 +02:00
LC_TIME = "en_DK.UTF-8";
LC_MONETARY = "en_IE.UTF-8";
};
supportedLocales = [ "all" ];
2024-12-08 15:38:56 +01:00
inputMethod.enable = true;
inputMethod.type = "ibus";
2024-05-26 16:45:38 +02:00
inputMethod.ibus.engines = with pkgs.ibus-engines; [
uniemoji
mozc
];
2019-10-19 12:55:35 +02:00
};
2020-03-24 00:55:49 +01:00
2019-10-19 12:55:35 +02:00
time.timeZone = "Europe/Berlin";
}