From 9ea0aa1abe7e3aa0b5e3fe1ddfe67a4e137788da Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Mon, 13 Jan 2025 17:59:15 -0500 Subject: [PATCH] Configure iptsd on crash --- nixos/machines/crash/configuration.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/nixos/machines/crash/configuration.nix b/nixos/machines/crash/configuration.nix index 84f4fb7..e47b6bf 100644 --- a/nixos/machines/crash/configuration.nix +++ b/nixos/machines/crash/configuration.nix @@ -160,6 +160,15 @@ dconf-editor ]; + # Setup iptsd for touch and stylus support + services.iptsd = { + enable = true; + config.Touchscreen = { + DisableOnPalm = true; + DisableOnStylus = true; + }; + }; + # Some programs need SUID wrappers, can be configured further or are # started in user sessions. # programs.mtr.enable = true;