mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-16 16:09:40 +01:00
11 lines
183 B
Nix
11 lines
183 B
Nix
|
{ config, pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
boot = {
|
||
|
extraModprobeConfig = ''
|
||
|
options bbswitch use_acpi_to_detect_card_state=1
|
||
|
'';
|
||
|
kernelModules = [ "kvm-intel" "tpm-rng" ];
|
||
|
};
|
||
|
}
|