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
1 changed files with 4 additions and 5 deletions

View File

@ -3,10 +3,9 @@ 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"
];
networking.networkmanager.settings.device = {
match-device = "driver:iwlwifi";
wifi.scan-rand-mac-address = "no";
};
};
}