1
Fork 0
satellite/modules/applications/locale.nix

15 lines
302 B
Nix
Raw Normal View History

2020-04-08 18:36:58 +02:00
{ ... }: {
2020-05-10 19:48:52 +02:00
i18n.defaultLocale = "en_US.UTF-8";
2020-04-08 18:36:58 +02:00
time.timeZone = "Europe/Bucharest";
2020-05-10 19:48:52 +02:00
i18n.inputMethod = {
enabled = "ibus";
# ibus.engines = with pkgs.ibus-engines; [ /* any engine you want, for example */ anthy ];
};
2020-05-10 19:48:52 +02:00
console = {
keyMap = "us";
font = "SourceCodePro";
2020-05-10 19:48:52 +02:00
};
2020-04-08 18:36:58 +02:00
}