mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 00:29:40 +01:00
12 lines
273 B
Nix
12 lines
273 B
Nix
{ config, lib, ... }:
|
|
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"
|
|
];
|
|
};
|
|
}
|