msi/gl62: init

This commit initialize support for MS-16J61 (Laptop) Motherboard
with unified BIOS of E16J6IMS, which includes:

  - MSI GL62 6QD
  - MSI GL62 6QC
  - MSI CX62 6QD
  - MSI CR62 6M
This commit is contained in:
Raphiel Rollerscaperers
2022-05-24 00:06:12 +07:00
committed by Jörg Thalheim
parent 8252035d61
commit 0543980bd6
3 changed files with 29 additions and 0 deletions

27
msi/gl62/default.nix Normal file
View File

@@ -0,0 +1,27 @@
{ config, lib, ... }:
{
imports = [
../../common/pc/laptop/ssd
../../common/cpu/intel
../../common/gpu/nvidia.nix
../../common/pc/laptop
];
boot.kernelParams = [
# For Power consumption in case of NVME SSD
# was installed.
"nvme.noacpi=1"
# For fixing interferences with Fn- action keys
"video.report_key_events=0"
];
hardware.nvidia.prime = {
# Bus ID of the Intel GPU.
intelBusId = lib.mkDefault "PCI:0:2:0";
# Bus ID of the NVIDIA GPU.
nvidiaBusId = lib.mkDefault "PCI:1:0:0";
};
}