mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
10 lines
222 B
Nix
10 lines
222 B
Nix
{ lib, config, ... }: {
|
|
imports = [
|
|
../../.
|
|
];
|
|
|
|
# Add Motorcomm YT6801 Driver if available
|
|
boot.extraModulePackages = with config.boot; lib.lists.optional
|
|
( kernelPackages ? yt6801 ) kernelPackages.yt6801;
|
|
}
|