Enable debugging on ath12k.

This commit is contained in:
Tom Alexander 2025-01-26 10:08:34 -05:00
parent ff8bb0653b
commit ee47c3cfa3
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE

View File

@ -12,5 +12,10 @@
environment.loginShellInit = lib.mkIf (!config.me.buildingIso) '' environment.loginShellInit = lib.mkIf (!config.me.buildingIso) ''
doas iw dev wlan0 set power_save off doas iw dev wlan0 set power_save off
''; '';
# Enable debug logging for ath12k wifi card.
boot.kernelParams = [
"ath12k.debug_mask=0xffffffff"
];
}; };
} }