summaryrefslogtreecommitdiffstats
path: root/apple
diff options
context:
space:
mode:
Diffstat (limited to 'apple')
-rw-r--r--apple/macbook-air/3/default.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/apple/macbook-air/3/default.nix b/apple/macbook-air/3/default.nix
new file mode 100644
index 0000000..03221ed
--- /dev/null
+++ b/apple/macbook-air/3/default.nix
@@ -0,0 +1,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;
+}