diff --git a/README.md b/README.md index c9b80cb9..7872295e 100644 --- a/README.md +++ b/README.md @@ -363,6 +363,7 @@ See code for all available configurations. | [LENOVO Yoga 7 Slim Gen8](lenovo/yoga/7/slim/gen8) | `` | `lenovo-yoga-7-slim-gen8` | | [MSI B550-A PRO](msi/b550-a-pro) | `` | `msi-b550-a-pro` | | [MSI B350 TOMAHAWK](msi/b350-tomahawk) | `` | `msi-b350-tomahawk` | +| [MSI B550 TOMAHAWK](msi/b550-tomahawk) | `` | `msi-b550-tomahawk` | | [MSI GS60 2QE](msi/gs60) | `` | `msi-gs60` | | [MSI GL62/CX62](msi/gl62) | `` | `msi-gl62` | | [MSI GL65 10SDR-492](msi/gl65/10SDR-492) | `` | `msi-gl65-10SDR-492` | diff --git a/flake.nix b/flake.nix index 7cfe53df..a8d00f57 100644 --- a/flake.nix +++ b/flake.nix @@ -315,6 +315,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; diff --git a/msi/b550-tomahawk/default.nix b/msi/b550-tomahawk/default.nix new file mode 100644 index 00000000..e2925b90 --- /dev/null +++ b/msi/b550-tomahawk/default.nix @@ -0,0 +1,14 @@ +{ config, ... }: +{ + imports = [ + ../../common/cpu/amd + ../../common/pc/ssd + ../../common/pc + ]; + + boot.extraModulePackages = with config.boot.kernelPackages; [ + nct6687d + ]; + + boot.kernelModules = [ "nct6687d" ]; +}