nixos/modules/keymaps/us.nix

12 lines
188 B
Nix
Raw Normal View History

2024-02-02 21:07:29 +01:00
{ config, pkgs, ... }:
{
# Configure keymap in X11
services.xserver = {
layout = "us";
xkbVariant = "altgr-intl";
};
# Configure console keymap
console.keyMap = "us";
}