23 lines
372 B
Nix
Raw Normal View History

{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
config = {
2025-03-20 20:18:40 -04:00
# Doesn't seem necessary starting with 6.13
# environment.loginShellInit = lib.mkIf (!config.me.buildingIso) ''
# doas iw dev wlan0 set power_save off
# '';
2025-01-26 10:08:34 -05:00
# Enable debug logging for ath12k wifi card.
boot.kernelParams = [
"ath12k.debug_mask=0xffffffff"
];
};
}