mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-13 06:29:40 +01:00
11 lines
326 B
Nix
11 lines
326 B
Nix
final: super:
|
|
|
|
let
|
|
inherit (final) callPackage kernelPatches linuxPackagesFor;
|
|
kernels = callPackage ./kernel { };
|
|
in
|
|
{
|
|
pinebookpro-manjaro-kernel = kernels.manjaro-kernel;
|
|
pinebookpro-ap6256-firmware = callPackage ./firmware/ap6256-firmware { };
|
|
pinebookpro-keyboard-updater = callPackage ./keyboard-updater { };
|
|
}
|