nixos/common/locale.nix

14 lines
257 B
Nix
Raw Permalink Normal View History

2023-07-28 15:39:50 +03:00
{ config, pkgs, ... }:
{
time.timeZone = "Europe/Moscow";
i18n.defaultLocale = "ru_RU.UTF-8";
2023-07-28 15:39:50 +03:00
console = {
font = "${pkgs.terminus_font}/share/consolefonts/ter-u24b.psf.gz";
2023-07-28 15:39:50 +03:00
keyMap = "us";
packages = with pkgs; [ terminus_font ];
};
}