msi/gf63: init

This commit is contained in:
glyxambi 2026-03-08 23:42:25 +05:30
parent 3966ce987e
commit 6a447e6e87
4 changed files with 39 additions and 0 deletions

9
msi/gf63/README.md Normal file
View file

@ -0,0 +1,9 @@
This module supports the following laptop models:
- MSI GF63 Thin 9SC
- MSI GF63 Thin 9SCX
- MSI GF63 Thin 9SCXR
- MSI GF63 Thin 9SCSR
For specifications, visit MSI's
[product page](https://www.msi.com/Laptop/GF63-Thin-9SX-GTX/Specification).

28
msi/gf63/default.nix Normal file
View file

@ -0,0 +1,28 @@
{ lib, ... }:
{
imports = [
../../common/pc/laptop
../../common/pc/ssd
../../common/cpu/intel
../../common/gpu/nvidia/turing
../../common/gpu/nvidia/prime.nix
];
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";
};
}