summaryrefslogtreecommitdiffstats
path: root/apple
diff options
context:
space:
mode:
authorilian <ilian@tuta.io>2019-11-12 10:36:10 +0000
committerJörg Thalheim <Mic92@users.noreply.github.com>2019-11-12 10:36:10 +0000
commitadecd1113c2d4137ef23237f9af450736fd8d2cc (patch)
treef52528e6bd582973f4ec0229fce1e56b9226fff0 /apple
parent5575153e2d96efc8caadfc46989b11c6e64454a4 (diff)
apple: Add support for MacBook Air 3,X (#91)
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;
+}