lenovo/thinkpad/x230: add coreboot sub-profile

This commit is contained in:
Yegor Timoshenko 2018-10-30 18:17:34 +00:00
parent 5c8cab8493
commit da2e972988
No known key found for this signature in database
GPG Key ID: B0B0D739BB47A03A
3 changed files with 12 additions and 14 deletions

View File

@ -0,0 +1,8 @@
{
imports = [
../.
../../../common/cpu/intel
];
boot.kernelModules = [ "tpm-rng" ];
}

View File

@ -0,0 +1,3 @@
{
imports = [ ../common.nix ];
}

View File

@ -1,19 +1,6 @@
{ config, lib, pkgs, ... }:
{
imports = [
../.
../../../common/cpu/intel
./common.nix
../../../common/pc/laptop/acpi_call.nix
];
boot = {
kernelModules = [
"tpm-rng"
];
};
services.xserver.deviceSection = lib.mkDefault ''
Option "TearFree" "true"
'';
}