summaryrefslogtreecommitdiff
path: root/modules/core/software/services/xserver.nix
blob: f1833a49afb3b92062648663ebddccb9a2d86ba3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{
  services.xserver = {
    xkb = {
      layout = "us";
      options = "caps:escape";
    };

    videoDrivers = [ "nvidia" ];
  };
}