Files
dotfiles/Hardware/xorg.nix
2021-04-07 19:07:29 +05:30

27 lines
528 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
services = {
xserver = {
enable = true;
libinput= {
enable = true;
# mouse = {
# accelSpeed = "0";
# };
touchpad = {
middleEmulation = false;
clickMethod = "buttonareas";
tapping = true;
naturalScrolling =true;
};
};
displayManager = {startx = {enable = true; }; };
videoDrivers = [ "nvidia" ];
layout = "us";
xkbVariant = "colemak";
};
};
}