1
0
Fork 0

configuration/desktop: global touchpad config

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

View File

@ -5,6 +5,7 @@
./audio.nix
./fonts.nix
./gnome.nix
./inputs.nix
./networking.nix
./power.nix
./printing.nix

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;
};
};
}
];
};
}