mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 16:57:14 +08:00
hp/elitebook/2560p: Initial commit
This commit is contained in:
committed by
Jörg Thalheim
parent
57c7dfde9d
commit
58103331f5
12
hp/elitebook/2560p/network.nix
Normal file
12
hp/elitebook/2560p/network.nix
Normal 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"
|
||||
];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user