diff --git a/README.md b/README.md index d9133620..aeb5ef90 100644 --- a/README.md +++ b/README.md @@ -66,7 +66,7 @@ you can easily pin to a particular revision if you desire more stability. See code for all available configurations. | Model | Path | -| ------------------------------------------------------------------- | -------------------------------------------------- | +|---------------------------------------------------------------------|----------------------------------------------------| | [Acer Aspire 4810T](acer/aspire/4810t) | `` | | [Airis N990](airis/n990) | `` | | [Apple MacBook Air 3,X](apple/macbook-air/3) | `` | @@ -75,7 +75,7 @@ See code for all available configurations. | [Apple MacBook Pro 12,1](apple/macbook-pro/12-1) | `` | | [Apple MacBook Pro 10,1](apple/macbook-pro/10-1) | `` | | [Asus TUF FX504GD](asus/fx504gd) | `` | -| [Asus ROG Strix G733QS](asus/rog-strix/g733qs) | `` | +| [Asus ROG Strix G733QS](asus/rog-strix/g733qs) | `` | | [Asus ROG Zephyrus G14 GA401](asus/zephyrus/ga401) | `` | | [BeagleBoard PocketBeagle](beagleboard/pocketbeagle) | `` | | [Dell G3 3779](dell/g3/3779) | `` | @@ -103,6 +103,7 @@ See code for all available configurations. | [Dell XPS 17 9710, intel only](dell/xps/17-9710/intel) | `` | | [FriendlyARM NanoPC-T4](friendlyarm/nanopc-t4) | `` | | [Google Pixelbook](google/pixelbook) | `` | +| [HP Elitebook 2560p](hp/elitebook/2560p) | `` | | [GPD MicroPC](gpd/micropc) | `` | | [Intel NUC 8i7BEH](intel/nuc/8i7beh/) | `` | | [Lenovo IdeaPad Z510](lenovo/ideapad/z510) | `` | diff --git a/hp/elitebook/2560p/default.nix b/hp/elitebook/2560p/default.nix new file mode 100644 index 00000000..de34e157 --- /dev/null +++ b/hp/elitebook/2560p/default.nix @@ -0,0 +1,21 @@ +{ config, lib, pkgs, ... }: +with lib; +let + xcfg = config.services.xserver; +in +{ + imports = [ + ../../../common/cpu/intel + ../../../common/cpu/intel/sandy-bridge + ../../../common/pc + ../../../common/pc/laptop + ../../../common/pc/laptop/hdd + ../../../common/pc/hdd + + ./network.nix + ]; + + config = { + services.thermald.enable = mkDefault true; + }; +} diff --git a/hp/elitebook/2560p/network.nix b/hp/elitebook/2560p/network.nix new file mode 100644 index 00000000..23c52844 --- /dev/null +++ b/hp/elitebook/2560p/network.nix @@ -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" + ]; + }; +}