1
0

configuration/desktop: global touchpad config

This commit is contained in:
2024-03-11 17:20:48 +01:00
parent 07609fb02d
commit 521ffac88c
2 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ ... }:
{
programs.dconf.profiles = {
user.databases = [
{
settings = {
"org/gnome/desktop/peripherals/touchpad" = {
disable-while-typing = false;
edge-scrolling-enabled = false;
natural-scroll = true;
tap-to-click = true;
two-finger-scrolling-enabled = true;
};
};
}
];
};
}