Enabling hp-wmi driver after PR merge

nixos/nixpkgs#255846
This commit is contained in:
the-furry-hubofeverything 2023-09-23 14:55:33 -07:00 committed by mergify[bot]
parent 061785322d
commit 08add92f17
2 changed files with 4 additions and 7 deletions

View File

@ -1,6 +1,4 @@
# HP Omen 15-en0001ca
## ACPI platform profiles
This config enables `hp-wmi`, which allows switch between cool, balanced, and performance modes on the platform EC, used by power management tools like `power-profile-daemon` and `tlp`.
Note - this is not yet compiled on Nixpkgs provided Kernels as of September 2023. See [the relevant PR](https://github.com/NixOS/nixpkgs/pull/255846).
This config enables `hp-wmi`, which allows switch between cool, balanced, and performance modes on the platform EC, used by power management tools like `power-profile-daemon` and `tlp`.

View File

@ -10,10 +10,9 @@
];
# Enables ACPI platform profiles
# TODO - enable module after PR merge
# boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
# kernelModules = [ "hp-wmi" ];
# };
boot = lib.mkIf (lib.versionAtLeast pkgs.linux.version "6.1") {
kernelModules = [ "hp-wmi" ];
};
hardware.nvidia.prime = {
amdgpuBusId = "PCI:7:0:0";