aboutsummaryrefslogtreecommitdiffstats
path: root/hosts/mercury/services/xserver.nix
blob: bea31b90a288c8ee818530926886383d37a3fbca (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, ... }:

{
  services.xserver = {
    enable = true;
    enableTearFree = true;
    excludePackages = with pkgs; [ xterm ];
    videoDrivers = [ "nvidia" ];

    xkb = {
      layout = "us";
      variant = "";
    };
  };
}