summaryrefslogtreecommitdiff
path: root/hosts/omar/desktop-environment/input.nix
blob: bb138c75d9d8f736ae6b62ab1803b62b79eef26f (plain)
1
2
3
4
5
6
7
8
9
10
11
{

  # Configure keymap in X11
  services.xserver.xkb.layout = "dk";
  services.xserver.xkb.options = "caps:escape";

  console.useXkbConfig = true;

  # Enable touchpad support (enabled default in most desktopManager).
  services.libinput.enable = true;
}