1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 19:13:33 +02:00
nixos-hardware/microsoft/surface/kernel/default.nix
2022-11-28 20:37:07 +13:00

38 lines
806 B
Nix

{ lib,
buildLinux,
callPackage,
linuxPackagesFor,
...
}:
# To test the kernel build:
# nix-build -E "with import <nixpkgs> {}; (pkgs.callPackage ./. {}).boot.kernelPackages.kernel"
let
inherit (lib) kernel recurseIntoAttrs;
repos = callPackage ../repos.nix {};
linuxPackage =
{ version,
modDirVersion ? version,
branch,
src,
kernelPatches ? [],
...
}: let
buildLinux' = buildLinux {
inherit version src kernelPatches;
modDirVersion = version;
extraMeta.branch = branch;
};
linuxPackagesFor' = (linuxPackagesFor buildLinux');
in recurseIntoAttrs linuxPackagesFor';
linux-5_16_11 = linuxPackage (
callPackage ./linux-5.16.11.nix { inherit repos; }
);
in {
boot.kernelPackages = linux-5_16_11;
}