14 lines
263 B
Nix
14 lines
263 B
Nix
{ pkgs, ...}: {
|
|
# Enable the X11 windowing system.
|
|
# You can disable this if you're only using the Wayland session.
|
|
services.xserver = {
|
|
enable = true;
|
|
xkb = {
|
|
layout = "us";
|
|
variant = "";
|
|
};
|
|
|
|
videoDrivers = [ "nvidia" ];
|
|
};
|
|
}
|