2023-07-05 03:45:25 +02:00
|
|
|
{ lib, config, pkgs, ... }: {
|
2023-07-05 03:44:53 +02:00
|
|
|
# Configure keymap in X11
|
|
|
|
services.xserver = {
|
|
|
|
enable = true;
|
|
|
|
layout = "us";
|
|
|
|
xkbVariant = "";
|
|
|
|
libinput = {
|
|
|
|
enable = true;
|
|
|
|
touchpad.tapping = true;
|
|
|
|
};
|
|
|
|
# Enable nVidia drivers
|
|
|
|
videoDrivers = [ "nvidia" ];
|
|
|
|
autorun = true;
|
2023-07-05 03:45:25 +02:00
|
|
|
};
|
|
|
|
}
|