dotfiles/modules/nixos/desktop/xserver/default.nix

25 lines
483 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
services = {
xserver = {
enable = true;
2025-01-14 16:17:42 -06:00
xkb = {
layout = "us";
# variant = "colemak_dh"
};
2024-10-06 15:25:05 -05:00
};
libinput = {
enable = true;
touchpad = {
2025-03-21 18:29:50 -05:00
scrollMethod = "twofinger";
naturalScrolling = true;
middleEmulation = true;
accelSpeed = "5";
accelProfile = "adaptive";
disableWhileTyping = true;
2024-10-06 15:25:05 -05:00
};
mouse.accelProfile = "flat";
};
};
console.useXkbConfig = true;
}