init: omen/15-en1007sa

This commit is contained in:
Samuel Cobb 2023-10-02 11:34:30 +01:00 committed by mergify[bot]
parent a149e3d37e
commit 2eb2fc2889
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
{ lib, pkgs, ... }:
{
imports = [
../../common/cpu/amd
../../common/gpu/nvidia/prime.nix
../../common/pc/laptop
../../common/pc/ssd
];
# Enables ACPI platform profiles
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
kernelModules = [ "hp-wmi" ];
};
hardware.nvidia.prime = {
amdgpuBusId = "PCI:6:0:0";
nvidiaBusId = "PCI:1:0:0";
};
}