hp/elitebook/2560p: Initial commit

This commit is contained in:
Antoine Viallon
2022-01-24 21:15:10 +01:00
committed by Jörg Thalheim
parent 57c7dfde9d
commit 58103331f5
3 changed files with 62 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ config, pkgs, 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"
];
};
}