1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-01 00:48:31 +02:00
nixos-hardware/apple/macbook-air/6/default.nix
2017-12-25 01:27:28 +00:00

15 lines
275 B
Nix

{ config, lib, ... }:
{
imports = [ ../. ];
boot = {
extraModulePackages = with config.boot.kernelPackages; [ mba6x_bl ];
kernelModules = [ "mba6x_bl" ];
};
services.xserver.deviceSection = lib.mkDefault ''
Option "Backlight" "mba6x_backlight"
'';
}