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