Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ See code for all available configurations.
| --------------------------------------------------------------------------------- | ------------------------------------------------------- | -------------------------------------- |
| [Acer Aspire 4810T](acer/aspire/4810t) | `<nixos-hardware/acer/aspire/4810t>` | `acer-aspire-4810t` |
| [Acer Predator Helios 300 (PH315-51)](acer/predator/helios/300/ph315-51/) | `<nixos-hardware/acer/predator/helios/300/ph315-51/>` | `acer-predator-helios-300-ph315-51` |
| [Acer Predator Helios 300 (G3-571)](acer/predator/helios/300/g3-571/) | `<nixos-hardware/acer/predator/helios/300/g3-571/>` | `acer-predator-helios-300-g3-571` |
| [Airis N990](airis/n990) | `<nixos-hardware/airis/n990>` | `airis-n990` |
| [Apple iMac 12,2](apple/imac/12-2) | `<nixos-hardware/apple/imac/12-2>` | `apple-imac-12-2` |
| [Apple iMac 14.2](apple/imac/14-2) | `<nixos-hardware/apple/imac/14-2>` | `apple-imac-14-2` |
Expand Down
7 changes: 7 additions & 0 deletions acer/predator/helios/300/g3-571/README.md
Original file line number Diff line number Diff line change
@@ -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
27 changes: 27 additions & 0 deletions acer/predator/helios/300/g3-571/default.nix
Original file line number Diff line number Diff line change
@@ -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";
};
};
};
}
1 change: 1 addition & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down