Co-authored-by: Jost Alemann <58050402+ddogfoodd@users.noreply.github.com> Co-authored-by: Jost Alemann <58050402+ddogfoodd@users.noreply.github.com> Signed-off-by: Christian Günther <christian.guenther@limatica.com>
11 lines
226 B
Nix
11 lines
226 B
Nix
{ lib, config, ... }:
|
|
{
|
|
imports = [
|
|
../../.
|
|
];
|
|
|
|
# Add Motorcomm YT6801 Driver if available
|
|
boot.extraModulePackages =
|
|
with config.boot;
|
|
lib.lists.optional (kernelPackages ? yt6801) kernelPackages.yt6801;
|
|
}
|