omen/14-fb0798ng: init

This commit is contained in:
Matz Momme Klint
2024-05-12 15:49:32 +02:00
committed by mergify[bot]
parent 0a944f8c68
commit 2a964239f6
4 changed files with 29 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
{ lib, pkgs, ... }:
{
imports = [
../../common/cpu/intel
../../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" ];
};
# Enables Wifi and Bluetooth
hardware.enableRedistributableFirmware = true;
hardware.nvidia.prime = {
intelBusId = "PCI:0:2:0";
nvidiaBusId = "PCI:1:0:0";
};
}