mirror of
https://github.com/NixOS/nixos-hardware
synced 2024-11-01 08:39:41 +01:00
11 lines
244 B
Nix
11 lines
244 B
Nix
{ config, lib, ... }:
|
|
with lib;
|
|
{
|
|
config = {
|
|
# Wifi can't connect if rand mac address is used
|
|
networking.networkmanager.settings.device = {
|
|
match-device = "driver:iwlwifi";
|
|
wifi.scan-rand-mac-address = "no";
|
|
};
|
|
};
|
|
}
|