15 lines
No EOL
303 B
Nix
15 lines
No EOL
303 B
Nix
{ lib, config, pkgs, ... }: {
|
|
# Configure keymap in X11
|
|
services.xserver = {
|
|
enable = true;
|
|
layout = "us";
|
|
xkbVariant = "";
|
|
libinput = {
|
|
enable = true;
|
|
touchpad.tapping = true;
|
|
};
|
|
# Enable nVidia drivers
|
|
videoDrivers = [ "nvidia" ];
|
|
autorun = true;
|
|
};
|
|
} |