Added config for Huawei Matebook X Pro (2020) (#957)

Created a config file for Huawei Matebook X Pro (2020). This file should work on all versions other than MACHC-WAH9L as that one does not include the Nvidia MX250 dGPU.
This commit is contained in:
Mic92 2024-05-26 08:04:14 +00:00 committed by mergify[bot]
parent d9e0b26202
commit cedb27beb1
4 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{
lib,
pkgs,
config,
...
}: {
imports = [
../../common/cpu/intel
../../common/cpu/intel/comet-lake
../../common/gpu/nvidia
../../common/gpu/nvidia/prime.nix
../../common/hidpi.nix
../../common/pc/laptop
../../common/pc/ssd
];
hardware.nvidia = {
modesetting.enable = lib.mkDefault true;
open = lib.mkDefault false;
nvidiaSettings = lib.mkDefault true;
prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
};
services.power-profiles-daemon.enable = lib.mkDefault true;
}