nixos/modules/keymaps/us.nix

14 lines
208 B
Nix
Raw Normal View History

2024-02-02 21:07:29 +01:00
{ config, pkgs, ... }:
{
# 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";
}