2016-02-08 07:12:20 -05:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2017-09-03 17:25:33 -04:00
|
|
|
imports = [ ./general.nix ];
|
|
|
|
|
2016-02-08 07:12:20 -05:00
|
|
|
boot = {
|
|
|
|
extraModprobeConfig = ''
|
|
|
|
options bbswitch use_acpi_to_detect_card_state=1
|
|
|
|
'';
|
|
|
|
kernelModules = [ "kvm-intel" "tpm-rng" ];
|
|
|
|
};
|
|
|
|
}
|