overlays/wpa-supplicant: init, makes it not spam journal

This commit is contained in:
LavaDesu 2025-03-25 22:17:23 +11:00
parent c8f4410d94
commit b9681ed925
Signed by: cilly
GPG key ID: 6500251E087653C9
3 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,6 @@
self: super: {
# Thanks https://discourse.nixos.org/t/journal-logs-spammed-with-ctrl-event-scan-failed/56316/5
wpa_supplicant = super.wpa_supplicant.overrideAttrs(o: {
patches = o.patches ++ [ ./patches/wpa-supplicant.patch ];
});
}