diff options
author | Alan Pearce | 2017-10-01 20:43:27 +0200 |
---|---|---|
committer | Alan Pearce | 2017-10-01 20:43:27 +0200 |
commit | acfa8110cdf4dde9532d33442a4ad18f5a6196c6 (patch) | |
tree | e9ef13a1be058b3d576f56307bfe3d6b9083af25 /modules/hardware | |
parent | dffdf0798a50f7377c9901ae01c4ee576b2dfb37 (diff) | |
download | nixos-configuration-acfa8110cdf4dde9532d33442a4ad18f5a6196c6.tar.lz nixos-configuration-acfa8110cdf4dde9532d33442a4ad18f5a6196c6.tar.zst nixos-configuration-acfa8110cdf4dde9532d33442a4ad18f5a6196c6.zip |
Thinkpad: Replace outdated tp_smapi module with acpi_call
Diffstat (limited to 'modules/hardware')
-rw-r--r-- | modules/hardware/thinkpad.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/modules/hardware/thinkpad.nix b/modules/hardware/thinkpad.nix index 1e97f06..755b433 100644 --- a/modules/hardware/thinkpad.nix +++ b/modules/hardware/thinkpad.nix @@ -1,10 +1,9 @@ { config, pkgs, ... }: -{ boot.kernelModules = [ "tp_smapi" ]; +{ boot.kernelModules = [ ]; boot.blacklistedKernelModules = [ "thinkpad_ec" ]; boot.extraModulePackages = with config.boot.kernelPackages; [ - # acpi_call - tp_smapi + acpi_call ]; hardware.trackpoint = { |