fix: inherit impureUseNativeOptimizations (#24)

This commit is contained in:
LoricAndre 2026-01-18 01:52:17 +01:00 committed by GitHub
parent cfe284d4af
commit a9f4771d31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -89,12 +89,18 @@
mkCachyKernel =
{ buildLinux, pkgs, ... }@args:
(import ./kernel-cachyos/mkCachyKernel.nix) {
inherit inputs lib buildLinux args;
inherit
inputs
lib
buildLinux
args
;
inherit (pkgs)
stdenv
callPackage
kernelPatches
applyPatches
impureUseNativeOptimizations
;
};