mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 09:38:07 +08:00
12 lines
226 B
Nix
12 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;
|
|
}
|