mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-03 08:47:13 +08:00
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:
committed by
Jörg Thalheim
parent
8252035d61
commit
0543980bd6
27
msi/gl62/default.nix
Normal file
27
msi/gl62/default.nix
Normal 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";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user