27 lines
483 B
Nix
Raw Normal View History

2019-08-27 20:49:08 +00:00
{ pkgs, config, lib, ... }: {
i18n = {
defaultLocale = "en_GB.UTF-8";
consoleFont = "cyr-sun16";
consoleKeyMap = "ruwin_cplk-UTF-8";
};
time.timeZone = "Europe/Volgograd";
2019-09-20 01:15:52 +04:00
location = {
provider = "manual";
latitude = 48.78583;
longitude = 44.77973;
};
2019-08-27 20:49:08 +00:00
home-manager.users.alukard.home.language = let
en = "en_GB.UTF-8";
ru = "ru_RU.UTF-8";
in {
address = ru;
monetary = ru;
paper = ru;
time = en;
base = en;
};
}