Add mt7927 driver to quark.

This commit is contained in:
Tom Alexander
2026-04-11 11:24:05 -04:00
parent 9550032c08
commit 5c2b0d8c2f
3 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ];
config = {
hardware.mediatek-mt7927 = {
enable = true;
enableWifi = true;
enableBluetooth = true;
# Highly recommended to fix upload speed issues
disableAspm = true;
};
};
}