summaryrefslogtreecommitdiff
path: root/machines/common/x11.nix
blob: ed2084ae2df5612aecf4617f933931cfee76537f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{...}: {
  services.displayManager.ly = {
    enable = true;
    x11Support = true;
  };

  services.xserver = {
    enable = true;
    xkb = {
      layout = "us";
      options = "caps:escape";
    };
  };
}