Merge pull request #1787 from glyxambi/gf63

msi/gf63: init
This commit is contained in:
Jörg Thalheim 2026-06-27 12:09:17 +00:00 committed by GitHub
commit a9cf7546a9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 39 additions and 0 deletions

View file

@ -401,6 +401,7 @@ See code for all available configurations.
| [MSI B550-A PRO](msi/b550-a-pro) | `<nixos-hardware/msi/b550-a-pro>` | `msi-b550-a-pro` | | [MSI B550-A PRO](msi/b550-a-pro) | `<nixos-hardware/msi/b550-a-pro>` | `msi-b550-a-pro` |
| [MSI B350 TOMAHAWK](msi/b350-tomahawk) | `<nixos-hardware/msi/b350-tomahawk>` | `msi-b350-tomahawk` | | [MSI B350 TOMAHAWK](msi/b350-tomahawk) | `<nixos-hardware/msi/b350-tomahawk>` | `msi-b350-tomahawk` |
| [MSI B550 TOMAHAWK](msi/b550-tomahawk) | `<nixos-hardware/msi/b550-tomahawk>` | `msi-b550-tomahawk` | | [MSI B550 TOMAHAWK](msi/b550-tomahawk) | `<nixos-hardware/msi/b550-tomahawk>` | `msi-b550-tomahawk` |
| [MSI GF63 Thin](msi/gf63) | `<nixos-hardware/msi/gf63>` | `msi-gf63` |
| [MSI GS60 2QE](msi/gs60) | `<nixos-hardware/msi/gs60>` | `msi-gs60` | | [MSI GS60 2QE](msi/gs60) | `<nixos-hardware/msi/gs60>` | `msi-gs60` |
| [MSI GL62/CX62](msi/gl62) | `<nixos-hardware/msi/gl62>` | `msi-gl62` | | [MSI GL62/CX62](msi/gl62) | `<nixos-hardware/msi/gl62>` | `msi-gl62` |
| [MSI GL65 10SDR-492](msi/gl65/10SDR-492) | `<nixos-hardware/msi/gl65/10SDR-492>` | `msi-gl65-10SDR-492` | | [MSI GL65 10SDR-492](msi/gl65/10SDR-492) | `<nixos-hardware/msi/gl65/10SDR-492>` | `msi-gl65-10SDR-492` |

View file

@ -380,6 +380,7 @@
msi-b350-tomahawk = import ./msi/b350-tomahawk; msi-b350-tomahawk = import ./msi/b350-tomahawk;
msi-b550-a-pro = import ./msi/b550-a-pro; msi-b550-a-pro = import ./msi/b550-a-pro;
msi-b550-tomahawk = import ./msi/b550-tomahawk; msi-b550-tomahawk = import ./msi/b550-tomahawk;
msi-gf63 = import ./msi/gf63;
msi-gs60 = import ./msi/gs60; msi-gs60 = import ./msi/gs60;
msi-gl62 = import ./msi/gl62; msi-gl62 = import ./msi/gl62;
msi-gl65-10SDR-492 = import ./msi/gl65/10SDR-492; msi-gl65-10SDR-492 = import ./msi/gl65/10SDR-492;

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