Merge pull request #923 from NixOS/joerg-ci

hp elitebook: fix eval
This commit is contained in:
Jörg Thalheim 2024-04-27 08:21:10 +02:00 committed by GitHub
commit 406ce62ea8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3,10 +3,9 @@ with lib;
{ {
config = { config = {
# Wifi can't connect if rand mac address is used # Wifi can't connect if rand mac address is used
networking.networkmanager.extraConfig = concatStringsSep "\n" [ networking.networkmanager.settings.device = {
"[device]" match-device = "driver:iwlwifi";
"match-device=driver:iwlwifi" wifi.scan-rand-mac-address = "no";
"wifi.scan-rand-mac-address=no" };
];
}; };
} }