NixOS-Configs/hosts/book/kernel.nix
2025-01-25 23:09:41 -06:00

11 lines
267 B
Nix

{ config, pkgs, lib, ... }: {
boot.kernelPatches = lib.singleton {
name = "book-config";
patch = null;
extraStructuredConfig = with lib.kernel; {
CROS_EC_I2C = module;
CROS_KBD_LED_BACKLIGHT = module;
I2C_HID_ACPI = yes;
};
};
}