16 lines
274 B
Nix
16 lines
274 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
boot.kernelPatches = lib.singleton {
|
|
name = "eve-config";
|
|
patch = null;
|
|
extraStructuredConfig = with lib.kernel; {
|
|
CROS_EC_I2C = module;
|
|
CROS_KBD_LED_BACKLIGHT = module;
|
|
I2C_HID_ACPI = yes;
|
|
};
|
|
};
|
|
}
|