nixos/modules/keymaps/us.nix

11 lines
188 B
Nix

{ config, pkgs, ... }:
{
# Configure keymap in X11
services.xserver = {
layout = "us";
xkbVariant = "altgr-intl";
};
# Configure console keymap
console.keyMap = "us";
}