1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-06 03:14:19 +02:00
nixos-hardware/huawei/machc-wa/default.nix
Mic92 cedb27beb1 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.
2024-05-26 08:14:11 +00:00

29 lines
563 B
Nix

{
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;
}