From 2372c63c19ff4a6228d667551f08dca4f663e8e0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20Du=C3=9Fin?= Date: Sun, 15 Jun 2025 10:12:29 +0200 Subject: [PATCH] disable middle mouse emulation middle mouse emulation to me with a perfectly functioning and blossoming middle mouse button is merely a distraction at best, while gaming it was crippling for a long time before I realised that it was not my mouse being broken or me being stupid, but rather this setting being enabled by default for some spirit-forsaken reason . fuck this . it still gets enabled by default, so it doesn't even help ? aaargh --- nix/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/nix/configuration.nix b/nix/configuration.nix index 93d5355..5976620 100644 --- a/nix/configuration.nix +++ b/nix/configuration.nix @@ -220,6 +220,12 @@ desktopManager.runXdgAutostartIfNone = true; displayManager.startx.enable = true; + + libinput = { + enable = true; + middleEmulation = false; + }; + windowManager.leftwm.enable = true; xkb.layout = "us"; xkb.variant = "dvp";