eve | first pass @ custom kernel config

This commit is contained in:
Don Harper 2023-07-23 10:15:15 -05:00
parent f2a8ec8606
commit e797c5d88e

12
hosts/eve/kernel.nix Normal file
View file

@ -0,0 +1,12 @@
{ 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;
};
};
}