switch to asahi kernel overlay

This commit is contained in:
Sean Kovacs 2026-01-15 17:16:55 -05:00
commit 93268092e6
Signed by: sckova
GPG key ID: 00F325187C68651A
3 changed files with 17 additions and 70 deletions

View file

@ -1,5 +1,20 @@
final: prev: {
spotify-webapp = final.callPackage ./spotify-webapp {};
linux-asahi = final.callPackage ./linux-asahi {};
altserver-linux = final.callPackage ./altserver {};
linuxPackages_asahi = prev.linuxPackages_asahi.override {
_kernelPatches = [
{
name = "Mailbox and RTKIT support";
patch = null;
structuredExtraConfig = with prev.lib.kernel; {
APPLE_MAILBOX = yes;
APPLE_RTKIT = yes;
APPLE_RTKIT_HELPER = yes;
RUST_APPLE_RTKIT = yes;
RUST_FW_LOADER_ABSTRACTIONS = yes;
};
}
];
};
}