summaryrefslogtreecommitdiffstats
path: root/lenovo/thinkpad/tp-smapi.nix
blob: 451dd28ece03a876e29fef7f719772bdefae4fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
# tp_smapi works on ThinkPads made before 2013. See compat table:
# https://www.thinkwiki.org/wiki/Tp_smapi#Model-specific_status

{ config, ... }:

{
  boot = {
    kernelModules = [ "tp_smapi" ];
    extraModulePackages = with config.boot.kernelPackages; [ tp_smapi ];
  };
}