From 36de8ed231aee1fd93ca4e4c59898cc5f65cbfe1 Mon Sep 17 00:00:00 2001 From: liberodark Date: Mon, 23 Mar 2026 23:27:36 +0100 Subject: [PATCH] msi/prestige/15-a10sc: init --- README.md | 1 + flake.nix | 1 + msi/prestige/15-a10sc/default.nix | 19 +++++++++++++++++++ 3 files changed, 21 insertions(+) create mode 100644 msi/prestige/15-a10sc/default.nix diff --git a/README.md b/README.md index c9e2d6bf..b8586a41 100644 --- a/README.md +++ b/README.md @@ -388,6 +388,7 @@ See code for all available configurations. | [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` | +| [MSI Prestige 15 A10SC](msi/prestige/15-a10sc) | `` | `msi-prestige-15-a10sc` | | [Malibal Aon S1](malibal/aon/s1) | | `` | `malibal-aon-s1` | | [Microchip Icicle Kit](microchip/icicle-kit) | `` | `microchip-icicle-kit` | | [Microsoft Surface Go](microsoft/surface/surface-go) | `` | `microsoft-surface-go` | diff --git a/flake.nix b/flake.nix index f1fd142c..e9026825 100644 --- a/flake.nix +++ b/flake.nix @@ -375,6 +375,7 @@ msi-gs60 = import ./msi/gs60; msi-gl62 = import ./msi/gl62; msi-gl65-10SDR-492 = import ./msi/gl65/10SDR-492; + msi-prestige-15-a10sc = import ./msi/prestige/15-a10sc; nxp-imx8mp-evk = import ./nxp/imx8mp-evk; nxp-imx8mq-evk = import ./nxp/imx8mq-evk; nxp-imx8qm-mek = import ./nxp/imx8qm-mek; diff --git a/msi/prestige/15-a10sc/default.nix b/msi/prestige/15-a10sc/default.nix new file mode 100644 index 00000000..143a60af --- /dev/null +++ b/msi/prestige/15-a10sc/default.nix @@ -0,0 +1,19 @@ +{ lib, ... }: + +{ + imports = [ + ../../../common/cpu/intel/comet-lake + ../../../common/gpu/nvidia/prime.nix + ../../../common/gpu/nvidia/turing + ../../../common/pc/laptop + ../../../common/pc/ssd + ]; + + hardware.bluetooth.enable = lib.mkDefault true; + hardware.graphics.enable = lib.mkDefault true; + + hardware.nvidia.prime = { + intelBusId = lib.mkDefault "PCI:0:2:0"; + nvidiaBusId = lib.mkDefault "PCI:2:0:0"; + }; +}