mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
15 lines
332 B
Nix
15 lines
332 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../../.
|
|
../../../common/pc/laptop
|
|
../../../common/pc/ssd
|
|
];
|
|
|
|
# Built-in iSight is recognized by the generic uvcvideo kernel module
|
|
hardware.facetimehd.enable = false;
|
|
|
|
hardware.cpu.intel.updateMicrocode =
|
|
lib.mkDefault config.hardware.enableRedistributableFirmware;
|
|
}
|