commit e2b862f77ec0083dadbbe33ed13b3a9b6f90d5e7
parent 1d842c0d5dec1599b6cd41172b26ea03282bf5f2
Author: Vincent Demeester <vincent@sbr.pm>
Date: Mon, 1 Jul 2024 15:27:44 +0200
wayland: trying to disable touchpad 😅
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 8 insertions(+), 0 deletions(-)
diff --git a/systems/modules/desktop/wayland.nix b/systems/modules/desktop/wayland.nix
@@ -20,6 +20,14 @@ in
enable = true;
};
};
+ services.libinput = {
+ touchpad = {
+ disableWhileTyping = true;
+ additionalOptions = ''
+ Option "Ignore" "on"
+ '';
+ };
+ };
environment.systemPackages = with pkgs; [
qogir-icon-theme
];