move acpi_call.nix and cpu-throttling-bug.nix to common folder

This commit is contained in:
André-Patrick Bubel
2018-10-19 17:52:25 +02:00
committed by Jörg Thalheim
parent d4a430fef2
commit 941fbef86f
8 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
# acpi_call makes tlp work for newer thinkpads
{ config, ... }:
{
boot = {
kernelModules = [ "acpi_call" ];
extraModulePackages = with config.boot.kernelPackages; [ acpi_call ];
};
}