Commit e2b862f77ec0

Vincent Demeester <vincent@sbr.pm>
2024-07-01 15:27:44
wayland: trying to disable touchpad ๐Ÿ˜…
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent 1d842c0
Changed files (1)
systems
modules
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
     ];