nixos/modules/system/keymaps/us.nix

14 lines
194 B
Nix
Raw Normal View History

2024-05-25 23:51:37 +02:00
{ ... }:
2024-02-02 21:07:29 +01:00
{
# Configure keymap in X11
services.xserver = {
2024-02-17 14:56:18 +01:00
xkb = {
layout = "us";
variant = "altgr-intl";
};
2024-02-02 21:07:29 +01:00
};
# Configure console keymap
console.keyMap = "us";
}