21 lines
273 B
Nix
21 lines
273 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [ ];
|
|
|
|
config = {
|
|
hardware.mediatek-mt7927 = {
|
|
enable = true;
|
|
enableWifi = true;
|
|
enableBluetooth = true;
|
|
# Highly recommended to fix upload speed issues
|
|
disableAspm = true;
|
|
};
|
|
};
|
|
}
|