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

22 lines
382 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 = {
tapping = true;
naturalScrolling = false;
};
mouse.accelProfile = "flat";
touchpad.accelProfile = "flat";
};
};
console.useXkbConfig = true;
}