Files
machine_setup/nix/configuration/hosts/quark/wifi.nix
2026-04-11 11:24:05 -04:00

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;
};
};
}