all repos — archive/nixos-configuration @ 057e1926729ababa1cc6533e6ff5b5e52575513d

Superseded by nixfiles

Create laptop-relevant modules

Alan Pearce
commit

057e1926729ababa1cc6533e6ff5b5e52575513d

parent

d5e8695fa082b59de9807cc27af47d90c519ac55

1 file changed, 31 insertions(+), 0 deletions(-)

changed files
A modules/thinkpad.nix
@@ -0,0 +1,31 @@
+{ config, pkgs, ... }: + +{ boot.kernelModules = [ "tp_smapi" ]; + boot.blacklistedKernelModules = [ "thinkpad_ec" ]; + boot.extraModulePackages = with config.boot.kernelPackages; [ + # acpi_call + tp_smapi + ]; + + hardware.trackpoint = { + enable = true; + emulateWheel = true; + }; + + services.thinkfan = { + enable = true; + sensor = "/sys/class/thermal/thermal_zone0/temp"; + }; + + services.tlp = { + enable = true; + extraConfig = '' + # Newer Thinkpads have a battery firmware + # it conflicts with TLP if stop thresholds are set + START_CHARGE_THRESH_BAT0=70 + STOP_CHARGE_THRESH_BAT0=80 + START_CHARGE_THRESH_BAT1=70 + STOP_CHARGE_THRESH_BAT1=80 + ''; + }; +}