You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 line
381 B

  1. { config, lib, ... }:
  2. {
  3. imports = [ ../. ];
  4. boot = {
  5. extraModulePackages = with config.boot.kernelPackages; [ mba6x_bl ];
  6. kernelModules = [ "mba6x_bl" ];
  7. # Divides power consumption by two.
  8. kernelParams = [ "acpi_osi=" ];
  9. };
  10. services.xserver.deviceSection = lib.mkDefault ''
  11. Option "Backlight" "mba6x_backlight"
  12. Option "TearFree" "true"
  13. '';
  14. }