d977cf26de
There are several significant differences between ThinkPads and the other Lenovo models, so this structure must be more precise
13 lines
215 B
Nix
13 lines
215 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./general.nix ];
|
|
|
|
boot = {
|
|
extraModprobeConfig = ''
|
|
options bbswitch use_acpi_to_detect_card_state=1
|
|
'';
|
|
kernelModules = [ "kvm-intel" "tpm-rng" ];
|
|
};
|
|
}
|