2022-12-31 05:52:38 -05:00
|
|
|
{ config, lib, ... }:
|
2022-01-24 15:15:10 -05:00
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
# Wifi can't connect if rand mac address is used
|
|
|
|
networking.networkmanager.extraConfig = concatStringsSep "\n" [
|
|
|
|
"[device]"
|
|
|
|
"match-device=driver:iwlwifi"
|
|
|
|
"wifi.scan-rand-mac-address=no"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|