about summary refs log tree commit diff
path: root/users/glittershark/system
diff options
context:
space:
mode:
authorGriffin Smith <grfn@gws.fyi>2021-01-13T15·17-0500
committerglittershark <grfn@gws.fyi>2021-01-13T16·53+0000
commit11da5b2fbc9bb05171203fb2708f3fee7adcc992 (patch)
treece1ff07db0d7774c5dae77baa3a8de27292d179c /users/glittershark/system
parent0f75042fea21f75754016f4d77d8e3a968b3ec3a (diff)
feat(gs/yeren): Blacklist the psmouse module r/2090
There appears to be an issue where the internal trackpad tries to
register itself as a ps1 mouse rather than a usb one, which causes some
dmesg warnings that may or may not cause actual problems. Regardless,
blacklisting this should be harmless.

Change-Id: I00fb539b8acf4fbf1b9125786ea6dc4f649b08c7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2364
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'users/glittershark/system')
-rw-r--r--users/glittershark/system/system/machines/yeren.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/users/glittershark/system/system/machines/yeren.nix b/users/glittershark/system/system/machines/yeren.nix
index eec5527a9f..0d9a17b68b 100644
--- a/users/glittershark/system/system/machines/yeren.nix
+++ b/users/glittershark/system/system/machines/yeren.nix
@@ -29,6 +29,7 @@
 
     kernelPackages = pkgs.linuxPackages_latest;
     kernelModules = [ "kvm-intel" ];
+    blacklistedKernelModules = [ "psmouse" ];
     extraModulePackages = [ ];
     kernelParams = [
       "i915.preliminary_hw_support=1"