aboutsummaryrefslogtreecommitdiff
path: root/modules/workstation/hardware/xkblayout/default.nix
blob: 1fa51cc05270030e8742a6d4b3a53e15eb640817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/* KEYBOARD LAYOUT MODULE
 *
 * (INCOMPLETE) Setup keyboard layout
 * and overrides. Currently this is
 * mostly handled by GRAPHICS/I3 but
 * should maybe be moved here?
 */
{ pkgs, config, ... }:

{
  i18n.consoleUseXkbConfig = true;
  services.xserver.layout = "us";

  # environment.variables.XKB_DEFAULT_LAYOUT = xcfg.layout;
  # environment.variables.XKB_DEFAULT_OPTIONS = xcfg.xkbOptions;
}