mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-04 18:19:40 +01:00
356ebeaaf7
The x1xx series relies on a AMD CPU, but all other (currently supported) ThinkPads use an Intel CPU, so `general-intel.nix` is responsible for all Intel defaults.
12 lines
209 B
Nix
12 lines
209 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [ ./general-intel.nix ];
|
|
|
|
boot = {
|
|
extraModprobeConfig = ''
|
|
options bbswitch use_acpi_to_detect_card_state=1
|
|
'';
|
|
kernelModules = [ "tpm-rng" ];
|
|
};
|
|
}
|