Emery 2016-02-24 19:41:24 +01:00
parent 13a1d5c0bd
commit 771087ca88
1 changed files with 14 additions and 0 deletions

14
lenovo/x220i-tablet.nix Normal file
View File

@ -0,0 +1,14 @@
{ config, pkgs, ... }:
{
# TPM chip countains a RNG
security.rngd.enable = true;
boot = {
kernelModules = [ "tp_smapi" ];
extraModulePackages = [ config.boot.kernelPackages.tp_smapi ];
};
# TLP Linux Advanced Power Management
services.tlp.enable = true;
}