mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
18 lines
381 B
Nix
18 lines
381 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"
|
|
Option "TearFree" "true"
|
|
'';
|
|
}
|