summaryrefslogtreecommitdiff
path: root/services/x11.nix
blob: c2589ff0d5fc1a18bf444d6e8cba22b59326c5d4 (plain)
1
2
3
4
5
6
7
8
9
{ config, ... }:
{
  # Enable the X11 windowing system.
  services.xserver = {
    enable = true;
    layout = "us";
    xkbOptions = "compose:ralt,terminate:ctrl_alt_bksp,ctrl:nocaps";
  };
}