mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-16 18:15:13 -05:00
24 lines
483 B
Nix
Executable file
24 lines
483 B
Nix
Executable file
{
|
|
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;
|
|
}
|