mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
12 lines
293 B
Nix
12 lines
293 B
Nix
|
{
|
||
|
imports = [
|
||
|
../../../common/cpu/intel
|
||
|
../../../common/pc/laptop
|
||
|
../../../common/pc/ssd
|
||
|
];
|
||
|
|
||
|
# Force use of the intel_backlight driver for backlight control.
|
||
|
# This allows the backlight save/load systemd service to work.
|
||
|
boot.kernelParams = [ "acpi_backlight=video" ];
|
||
|
}
|