I try to clean up
boot = {
...
kernelPatches = lib.singleton {
name = "cleaner";
patch = null;
extraStructuredConfig = with lib.kernel; {
WLAN = no;
};
};
};
But get:
> error: unused option: RT2800USB_RT53XX
> error: unused option: RT2800USB_RT55XX
> error: unused option: RTW88
> error: unused option: RTW88_8822BE
> error: unused option: RTW88_8822CE
Learn about:
Is there any other way than the known use of ignoreConfigErrors
? (I don’t want to hide errors.)