From 98b4788c85ba05714a92004a2771942da4c91c7a Mon Sep 17 00:00:00 2001 From: toastal Date: Sun, 19 Mar 2023 16:29:39 +0700 Subject: [PATCH] init morefine-m600 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Morefine M600 is an AMD-powered Mini PC CPU options (all 6000-series mobile):: • R9-6900HX • R9-6850H • R7-6850U • R7-6800H • R5-6600U If bought with RAM + HDD, you would be getting DDR5 RAM @ 4800MHz & an NVMe drive, however, it can also be purchased “barebone” with the wireless card also being replacable. --- README.md | 1 + flake.nix | 1 + morefine/m600/default.nix | 12 ++++++++++++ 3 files changed, 14 insertions(+) create mode 100644 morefine/m600/default.nix diff --git a/README.md b/README.md index 0ee926a..5da1f79 100644 --- a/README.md +++ b/README.md @@ -203,6 +203,7 @@ See code for all available configurations. | [Microsoft Surface Laptop (AMD)](microsoft/surface/surface-laptop-amd)| ``| | [Microsoft Surface Range (Common Modules)](microsoft/surface/common)| `` | | [Microsoft Surface Pro 3](microsoft/surface-pro/3) | `` | +| [Morefine M600](morefine/m600) | `` | | [Hardkernel Odroid HC4](hardkernel/odroid-hc4/default.nix) | `` | | [Omen en00015p](omen/en00015p) | `` | | [One-Netbook OneNetbook 4](onenetbook/4) | `` | diff --git a/flake.nix b/flake.nix index c5a9a45..d58b284 100644 --- a/flake.nix +++ b/flake.nix @@ -140,6 +140,7 @@ microsoft-surface-laptop-amd = import ./microsoft/surface/surface-laptop-amd; microsoft-surface-common = import ./microsoft/surface/common; microsoft-surface-pro-3 = import ./microsoft/surface-pro/3; + morefine-m600 = import ./morefine/m600; msi-gs60 = import ./msi/gs60; msi-gl62 = import ./msi/gl62; nxp-imx8qm-mek = import ./nxp/imx8qm-mek; diff --git a/morefine/m600/default.nix b/morefine/m600/default.nix new file mode 100644 index 0000000..db4ed24 --- /dev/null +++ b/morefine/m600/default.nix @@ -0,0 +1,12 @@ +{ lib, pkgs, ...}: { + imports = [ + ../../common/cpu/amd + ../../common/cpu/amd/pstate.nix + ../../common/gpu/amd + ]; + + hardware.enableRedistributableFirmware = lib.mkDefault true; + + # If the wireless card is not replaced + # boot.initrd.availableKernelModules = [ "r8169" ]; +}