mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
16 lines
307 B
Nix
16 lines
307 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../.
|
|
../../../common/cpu/intel
|
|
];
|
|
|
|
boot = {
|
|
extraModprobeConfig = lib.mkDefault ''
|
|
options bbswitch use_acpi_to_detect_card_state=1
|
|
'';
|
|
# TODO: probably enable tcsd? Is this line necessary?
|
|
kernelModules = [ "tpm-rng" ];
|
|
};
|
|
}
|