1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-04 10:23:28 +02:00
nixos-hardware/omen/14-fb0798ng/default.nix

24 lines
477 B
Nix
Raw Normal View History

2024-05-12 15:49:32 +02:00
{ 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";
};
}