Merge pull request #1621 from nukdokplex/msi/b550-tomahawk

msi/b550-tomahawk: init
This commit is contained in:
Jörg Thalheim
2025-09-30 19:41:31 +00:00
committed by GitHub
3 changed files with 16 additions and 0 deletions

View File

@@ -368,6 +368,7 @@ See code for all available configurations.
| [Linglong Nova Studio](linglong/nova-studio) | `<nixos-hardware/linglong/nova-studio>` | `linglong-nova-studio` |
| [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 B550 TOMAHAWK](msi/b550-tomahawk) | `<nixos-hardware/msi/b550-tomahawk>` | `msi-b550-tomahawk` |
| [MSI GS60 2QE](msi/gs60) | `<nixos-hardware/msi/gs60>` | `msi-gs60` |
| [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` |

View File

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

View File

@@ -0,0 +1,14 @@
{ config, ... }:
{
imports = [
../../common/cpu/amd
../../common/pc/ssd
../../common/pc
];
boot.extraModulePackages = with config.boot.kernelPackages; [
nct6687d
];
boot.kernelModules = [ "nct6687d" ];
}