aboutsummaryrefslogtreecommitdiff
path: root/hosts/ganymede/iwlwifi.nix
blob: 729034f3d913298fea4ce8a429c1c1bd0b908348 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
  # Append Kernel modules
  boot.kernelModules = [
    "brcmfmac"
    "brcmutil"
    "iwlmvm"
    "iwlwifi"
    "mmc_core"
    "mt76_usb"
    "mt76"
    "mt76x0_common"
    "mt76x02_lib"
    "mt76x02_usb"
    "mt76x0u"
    "r8188eu"
    "rtl_usb"
    "rtl8192c_common"
    "rtl8192cu"
    "rtlwifi"
  ];
  hardware.enableAllFirmware = true;
  hardware.enableRedistributableFirmware = true;
}