18 lines
352 B
Nix
18 lines
352 B
Nix
{ config, lib, ... }:
|
|
|
|
{
|
|
imports = [ ../. ];
|
|
|
|
boot = {
|
|
extraModulePackages = with config.boot.kernelPackages; [ mba6x_bl ];
|
|
kernelModules = [ "mba6x_bl" ];
|
|
|
|
# Divides power consumption by two.
|
|
kernelParams = [ "acpi_osi=" ];
|
|
};
|
|
|
|
services.xserver.deviceSection = lib.mkDefault ''
|
|
Option "Backlight" "mba6x_backlight"
|
|
'';
|
|
}
|