Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixos-hardware
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5575153e2d96
Choose a base ref
...
head repository: NixOS/nixos-hardware
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: adecd1113c2d
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Nov 12, 2019

  1. apple: Add support for MacBook Air 3,X (#91)

    ilian authored and Mic92 committed Nov 12, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    nolmoonen Nol Moonen
    Copy the full SHA
    adecd11 View commit details
Showing with 16 additions and 0 deletions.
  1. +1 −0 README.md
  2. +15 −0 apple/macbook-air/3/default.nix
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -28,6 +28,7 @@ See code for all available configurations.
| --------------------------------- | -------------------------------------------------- |
| [Acer Aspire 4810T][] | `<nixos-hardware/acer/aspire/4810t>` |
| Airis N990 | `<nixos-hardware/airis/n990>` |
| Apple MacBook Air 3,X | `<nixos-hardware/apple/macbook-air/3>` |
| Apple MacBook Air 4,X | `<nixos-hardware/apple/macbook-air/4>` |
| Apple MacBook Air 6,X | `<nixos-hardware/apple/macbook-air/6>` |
| [Apple MacBook Pro 10,1][] | `<nixos-hardware/apple/macbook-pro/10-1>` |
15 changes: 15 additions & 0 deletions apple/macbook-air/3/default.nix
Original file line number Diff line number Diff line change
@@ -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;
}