summaryrefslogtreecommitdiffstats
path: root/apple/macbook-air/3/default.nix
blob: 03221edcd0b03c6048bba717999ec5d5293d474e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ 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;
}