1
Fork 0
satellite/modules/applications/locale.nix
Matei Adriel 01e4fe7095 Backup
2022-12-09 02:32:25 +01:00

20 lines
412 B
Nix

{ pkgs, ... }: {
i18n.defaultLocale = "en_US.UTF-8";
# time.timeZone = "Europe/Bucharest";
time.timeZone = "Europe/Amsterdam";
i18n.inputMethod = {
enabled = "ibus";
# ibus.engines = with pkgs.ibus-engines; [ /* any engine you want, for example */ anthy ];
};
environment.systemPackages = [
pkgs.source-code-pro
];
console = {
keyMap = "us";
font = "SourceCodePro";
};
}