mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-14 06:59:41 +01:00
12 lines
326 B
Nix
12 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 { };
|
||
|
}
|