diff --git a/nix/configuration/hosts/odo/wifi.nix b/nix/configuration/hosts/odo/wifi.nix index 64d4247..d523f3c 100644 --- a/nix/configuration/hosts/odo/wifi.nix +++ b/nix/configuration/hosts/odo/wifi.nix @@ -12,5 +12,10 @@ environment.loginShellInit = lib.mkIf (!config.me.buildingIso) '' doas iw dev wlan0 set power_save off ''; + + # Enable debug logging for ath12k wifi card. + boot.kernelParams = [ + "ath12k.debug_mask=0xffffffff" + ]; }; }