From fa665adecdbed38a731d588801fc96d9f5d1b9d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Noah=20Trinit=C3=A9?= Date: Sun, 12 Jul 2026 17:09:45 -0400 Subject: [PATCH] Add predator helios 300 g3-571 profile --- README.md | 1 + acer/predator/helios/300/g3-571/README.md | 7 ++++++ acer/predator/helios/300/g3-571/default.nix | 27 +++++++++++++++++++++ flake.nix | 1 + 4 files changed, 36 insertions(+) create mode 100644 acer/predator/helios/300/g3-571/README.md create mode 100644 acer/predator/helios/300/g3-571/default.nix diff --git a/README.md b/README.md index c61b7eb9c..2a458125f 100644 --- a/README.md +++ b/README.md @@ -95,6 +95,7 @@ See code for all available configurations. | --------------------------------------------------------------------------------- | ------------------------------------------------------- | -------------------------------------- | | [Acer Aspire 4810T](acer/aspire/4810t) | `` | `acer-aspire-4810t` | | [Acer Predator Helios 300 (PH315-51)](acer/predator/helios/300/ph315-51/) | `` | `acer-predator-helios-300-ph315-51` | +| [Acer Predator Helios 300 (G3-571)](acer/predator/helios/300/g3-571/) | `` | `acer-predator-helios-300-g3-571` | | [Airis N990](airis/n990) | `` | `airis-n990` | | [Apple iMac 12,2](apple/imac/12-2) | `` | `apple-imac-12-2` | | [Apple iMac 14.2](apple/imac/14-2) | `` | `apple-imac-14-2` | diff --git a/acer/predator/helios/300/g3-571/README.md b/acer/predator/helios/300/g3-571/README.md new file mode 100644 index 000000000..651893db3 --- /dev/null +++ b/acer/predator/helios/300/g3-571/README.md @@ -0,0 +1,7 @@ +# Acer Predator Helios 300 (G3-571) + +## Hardware Configuration + +- Intel Core i7 (7th Gen) 7700HQ / 2.8 GHz +- NVIDIA GeForce GTX 1060 +- 250GB SSD diff --git a/acer/predator/helios/300/g3-571/default.nix b/acer/predator/helios/300/g3-571/default.nix new file mode 100644 index 000000000..5d025ba1a --- /dev/null +++ b/acer/predator/helios/300/g3-571/default.nix @@ -0,0 +1,27 @@ +{ + lib, + ... +}: +let + inherit (lib) mkDefault; +in +{ + imports = [ + ../../../../../common/pc/laptop + ../../../../../common/cpu/intel/kaby-lake + ../../../../../common/gpu/nvidia/pascal + ]; + + hardware = { + nvidia = { + modesetting.enable = mkDefault true; + powerManagement.enable = mkDefault true; + + prime = { + sync.enable = mkDefault true; + intelBusId = "PCI:0@0:2:0"; + nvidiaBusId = "PCI:1@0:0:0"; + }; + }; + }; +} diff --git a/flake.nix b/flake.nix index 281c632a8..50745a530 100644 --- a/flake.nix +++ b/flake.nix @@ -44,6 +44,7 @@ { acer-aspire-4810t = import ./acer/aspire/4810t; acer-predator-helios-300-ph315-51 = import ./acer/predator/helios/300/ph315-51; + acer-predator-helios-300-g3-571 = import ./acer/predator/helios/300/g3-571; airis-n990 = import ./airis/n990; aoostar-r1-n100 = import ./aoostar/r1/n100; apple-imac-12-2 = import ./apple/imac/12-2;