13 lines
271 B
Nix
13 lines
271 B
Nix
|
# Configure keymap in X11
|
||
|
services.xserver = {
|
||
|
enable = true;
|
||
|
layout = "us";
|
||
|
xkbVariant = "";
|
||
|
libinput = {
|
||
|
enable = true;
|
||
|
touchpad.tapping = true;
|
||
|
};
|
||
|
# Enable nVidia drivers
|
||
|
videoDrivers = [ "nvidia" ];
|
||
|
autorun = true;
|
||
|
};
|