task | add book (i7 Pixelbook 2017)

This commit is contained in:
Don Harper 2025-01-25 23:09:41 -06:00
parent 80f8742047
commit dff859860f
6 changed files with 440 additions and 0 deletions

11
hosts/book/kernel.nix Normal file
View file

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