thinkpad: enable fan control
1 file changed, 7 insertions(+), 0 deletions(-)
changed files
M system/settings/hardware/thinkpad.nix → system/settings/hardware/thinkpad.nix
@@ -2,8 +2,15 @@ { config, pkgs, ... }: { boot.kernelModules = [ ]; boot.blacklistedKernelModules = [ "thinkpad_ec" ]; + boot.extraModulePackages = with config.boot.kernelPackages; [ + acpi_call + ]; services.fwupd = { + enable = true; + }; + + services.thinkfan = { enable = true; };