mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
16 lines
332 B
Nix
16 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;
|
||
|
}
|