my kernel isn't broken

This commit is contained in:
Gerg-L 2024-11-30 15:43:47 -05:00
parent 9bec2ed262
commit cbd55667d0
Signed by: gerg-l
SSH key fingerprint: SHA256:FPYDHIkvMocr4wdmZXpgpJjsb2Tw6rASs2ISPbOb0KI

View file

@ -112,13 +112,16 @@ in
configfile = ./kernelConfig; configfile = ./kernelConfig;
}).overrideAttrs }).overrideAttrs
(old: { (old: {
passthru = (old.passthru or { }) // { passthru = old.passthru or { } // {
features = lib.foldr (x: y: (x.features or { }) // y) { features = lib.foldr (x: y: x.features or { } // y) {
efiBootStub = true; efiBootStub = true;
netfilterRPFilter = true; netfilterRPFilter = true;
ia32Emulation = true; ia32Emulation = true;
} config.boot.kernelPatches; } config.boot.kernelPatches;
}; };
meta = old.meta or { } // {
broken = false;
};
}) })
); );
}; };