summary refs log tree commit diff stats
path: root/system/settings/hardware/keyboard.nix
blob: 5a0ea5f4ceb336e0be25a5ca4f59a51334344203 (plain)
1
2
3
4
5
6
7
8
9
{ config, pkgs, ... }:

{
  services.xserver = {
    layout = "us,us";
    xkbVariant = "intl-unicode,norman";
    xkbOptions = "altwin:prtsc_rwin,caps:escape,grp:shifts_toggle";
  };
}