mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 10:05:13 -05:00
25 lines
483 B
Nix
25 lines
483 B
Nix
![]() |
{
|
||
|
services = {
|
||
|
xserver = {
|
||
|
enable = true;
|
||
|
xkb = {
|
||
|
layout = "us";
|
||
|
# variant = "colemak_dh"
|
||
|
};
|
||
|
};
|
||
|
libinput = {
|
||
|
enable = true;
|
||
|
touchpad = {
|
||
|
scrollMethod = "twofinger";
|
||
|
naturalScrolling = true;
|
||
|
middleEmulation = true;
|
||
|
accelSpeed = "5";
|
||
|
accelProfile = "adaptive";
|
||
|
disableWhileTyping = true;
|
||
|
};
|
||
|
mouse.accelProfile = "flat";
|
||
|
};
|
||
|
};
|
||
|
console.useXkbConfig = true;
|
||
|
}
|