Add odowork.

This commit is contained in:
Tom Alexander
2025-11-18 21:30:56 -05:00
parent a94df0944b
commit 8ccd34aba9
16 changed files with 549 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{
config,
...
}:
{
imports = [ ];
config = {
boot.extraModulePackages = with config.boot.kernelPackages; [
framework-laptop-kmod
];
# https://github.com/DHowett/framework-laptop-kmod?tab=readme-ov-file#usage
boot.kernelModules = [
"cros_ec"
"cros_ec_lpcs"
];
};
}