hp elitebook: fix eval

This commit is contained in:
Jörg Thalheim 2024-04-27 08:18:59 +02:00
parent 797f8d8082
commit 74b75a9598
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";
};
};
}