apple/macbook-air/6: init

This commit is contained in:
Yegor Timoshenko 2017-12-25 01:24:54 +00:00
parent aa70bfe955
commit db483616db
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210
2 changed files with 22 additions and 0 deletions

View File

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

View File

@ -0,0 +1,8 @@
{
imports = [
../.
../../common/cpu/intel
../../common/pc/laptop
../../common/pc/laptop/ssd
];
}