mirror of
https://github.com/xddxdd/nix-cachyos-kernel.git
synced 2026-07-03 19:18:07 +02:00
15 lines
262 B
Nix
15 lines
262 B
Nix
{
|
|
mode ? null,
|
|
callPackage,
|
|
lib,
|
|
linuxKernel,
|
|
sources,
|
|
...
|
|
}:
|
|
let
|
|
kernels = callPackage ./default.nix { inherit mode sources; };
|
|
in
|
|
lib.mapAttrs (n: v: linuxKernel.packagesFor v) (
|
|
lib.filterAttrs (n: nv: !lib.hasSuffix "configfile" n) kernels
|
|
)
|