From e797c5d88e317d3ca3657fc9afd4db54791855f0 Mon Sep 17 00:00:00 2001 From: Don Harper Date: Sun, 23 Jul 2023 10:15:15 -0500 Subject: [PATCH] eve | first pass @ custom kernel config --- hosts/eve/kernel.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 hosts/eve/kernel.nix diff --git a/hosts/eve/kernel.nix b/hosts/eve/kernel.nix new file mode 100644 index 0000000..5123f77 --- /dev/null +++ b/hosts/eve/kernel.nix @@ -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; + }; + }; +}